2006-07-29 11:30:06 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
2006-10-10 21:06:45 +00:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2006-07-29 11:30:06 +00:00
|
|
|
|
2007-03-28 18:13:54 +00:00
|
|
|
PKG_NAME:=Build dependency
|
|
|
|
|
2006-08-24 18:49:51 +00:00
|
|
|
define Require/non-root
|
|
|
|
[ "$$(shell whoami)" != "root" ]
|
|
|
|
endef
|
|
|
|
$(eval $(call Require,non-root, \
|
2006-09-07 07:57:17 +00:00
|
|
|
Please do not compile as root. \
|
2006-08-24 18:49:51 +00:00
|
|
|
))
|
|
|
|
|
2006-07-29 11:30:06 +00:00
|
|
|
# Required for the toolchain
|
|
|
|
define Require/working-make
|
2007-12-04 03:00:29 +00:00
|
|
|
$(MAKE) -v | awk '($$$$1 == "GNU") && ($$$$2 = "Make") && ($$$$3 >= "3.81") { print "ok" }' | grep ok > /dev/null
|
2006-07-29 11:30:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,working-make, \
|
2006-09-07 07:57:17 +00:00
|
|
|
Please install GNU make v3.81 or later. (This version has bugs) \
|
2006-07-29 11:30:06 +00:00
|
|
|
))
|
|
|
|
|
2006-10-14 11:23:23 +00:00
|
|
|
define Require/case-sensitive-fs
|
|
|
|
rm -f $(TMP_DIR)/test.*
|
|
|
|
touch $(TMP_DIR)/test.fs
|
|
|
|
[ \! -f $(TMP_DIR)/test.FS ]
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,case-sensitive-fs, \
|
|
|
|
OpenWrt can only be built on a case-sensitive filesystem \
|
|
|
|
))
|
|
|
|
|
2009-01-25 19:00:43 +00:00
|
|
|
define Require/getopt
|
|
|
|
getopt --help 2>&1 | grep long >/dev/null
|
|
|
|
endef
|
|
|
|
$(eval $(call Require,getopt, \
|
|
|
|
Please install GNU getopt \
|
|
|
|
))
|
|
|
|
|
|
|
|
define Require/fileutils
|
|
|
|
gcp --help || cp --help
|
|
|
|
endef
|
|
|
|
$(eval $(call Require,fileutils, \
|
|
|
|
Please install GNU fileutils \
|
|
|
|
))
|
|
|
|
|
2006-07-29 11:30:06 +00:00
|
|
|
define Require/working-gcc
|
|
|
|
echo 'int main(int argc, char **argv) { return 0; }' | \
|
|
|
|
gcc -x c -o $(TMP_DIR)/a.out -
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,working-gcc, \
|
2006-09-07 07:57:17 +00:00
|
|
|
Please install the GNU C Compiler (gcc). \
|
2006-07-29 11:30:06 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
define Require/working-g++
|
|
|
|
echo 'int main(int argc, char **argv) { return 0; }' | \
|
2009-04-09 21:13:15 +00:00
|
|
|
g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \
|
2007-07-23 02:56:30 +00:00
|
|
|
$(TMP_DIR)/a.out
|
2006-07-29 11:30:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,working-g++, \
|
2006-09-07 07:57:17 +00:00
|
|
|
Please install the GNU C++ Compiler (g++). \
|
2006-07-29 11:30:06 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
define Require/ncurses
|
|
|
|
echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \
|
2009-04-09 21:13:15 +00:00
|
|
|
gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses
|
2006-07-29 11:30:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,ncurses, \
|
2006-09-07 07:57:17 +00:00
|
|
|
Please install ncurses. (Missing libncurses.so or ncurses.h) \
|
2006-07-29 11:30:06 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
define Require/zlib
|
|
|
|
echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \
|
2009-04-09 21:13:15 +00:00
|
|
|
gcc -include zlib.h -x c -o $(TMP_DIR)/a.out - -lz
|
2006-07-29 11:30:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,zlib, \
|
2006-09-07 07:57:17 +00:00
|
|
|
Please install zlib. (Missing libz.so or zlib.h) \
|
2006-07-29 11:30:06 +00:00
|
|
|
))
|
|
|
|
|
2007-04-02 11:42:31 +00:00
|
|
|
$(eval $(call RequireCommand,gawk, \
|
2007-04-02 11:42:00 +00:00
|
|
|
Please install GNU awk. \
|
|
|
|
))
|
2006-07-29 11:30:06 +00:00
|
|
|
|
|
|
|
$(eval $(call RequireCommand,flex, \
|
|
|
|
Please install flex. \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call RequireCommand,unzip, \
|
|
|
|
Please install unzip. \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call RequireCommand,bzip2, \
|
|
|
|
Please install bzip2. \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call RequireCommand,patch, \
|
|
|
|
Please install patch. \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call RequireCommand,perl, \
|
|
|
|
Please install perl. \
|
|
|
|
))
|
2006-10-10 21:06:45 +00:00
|
|
|
|
2008-08-04 23:59:18 +00:00
|
|
|
$(eval $(call RequireCommand,python, \
|
|
|
|
Please install python. \
|
|
|
|
))
|
|
|
|
|
2006-10-13 23:36:43 +00:00
|
|
|
$(eval $(call RequireCommand,wget, \
|
|
|
|
Please install wget. \
|
|
|
|
))
|
|
|
|
|
2011-02-14 15:06:11 +00:00
|
|
|
$(eval $(call RequireCommand,git, \
|
|
|
|
Please install git (git-core). \
|
|
|
|
))
|
|
|
|
|
2006-10-10 21:06:45 +00:00
|
|
|
define Require/gnutar
|
|
|
|
$(TAR) --version 2>&1 | grep GNU > /dev/null
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,gnutar, \
|
|
|
|
Please install GNU tar. \
|
|
|
|
))
|
2006-11-24 00:03:05 +00:00
|
|
|
|
2007-11-16 03:10:40 +00:00
|
|
|
$(eval $(call RequireCommand,svn, \
|
|
|
|
Please install the subversion client. \
|
|
|
|
))
|
|
|
|
|
2007-12-11 22:28:10 +00:00
|
|
|
define Require/gnu-find
|
2010-04-21 20:42:09 +00:00
|
|
|
$(FIND) --version 2>/dev/null
|
2007-12-11 22:28:10 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,gnu-find, \
|
|
|
|
Please install GNU find \
|
|
|
|
))
|
2008-09-02 10:57:14 +00:00
|
|
|
|
|
|
|
define Require/getopt-extended
|
|
|
|
getopt --long - - >/dev/null
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,getopt-extended, \
|
|
|
|
Please install an extended getopt version that supports --long \
|
|
|
|
))
|