diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-11 00:05:18 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-11 00:05:18 +0000 |
commit | e3377b48d14e51354d8dffc74a5c76cae571f9fd (patch) | |
tree | 9fde0bb1b48ee108fba2fb19323aefa3129f5c9d /include/prereq-build.mk | |
parent | 727a3dd0fabbe928d0a32f365784c04f1ff48e50 (diff) | |
download | upstream-e3377b48d14e51354d8dffc74a5c76cae571f9fd.tar.gz upstream-e3377b48d14e51354d8dffc74a5c76cae571f9fd.tar.bz2 upstream-e3377b48d14e51354d8dffc74a5c76cae571f9fd.zip |
[include] add remaining missing build prereq checks
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33122 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/prereq-build.mk')
-rw-r--r-- | include/prereq-build.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 28c2a216b2..74f1e32a6e 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -79,6 +79,16 @@ $(eval $(call Require,working-gcc-static, \ Please install the static libc development package (glibc-static on CentOS/Fedora/RHEL). \ )) +define Require/working-g++-static + echo 'int main(int argc, char **argv) { return 0; }' | \ + g++ -x c++ -static -o $(TMP_DIR)/a.out - -lstdc++ && \ + $(TMP_DIR)/a.out +endef + +$(eval $(call Require,working-g++-static, \ + Please install the static libstdc++ development package (libstdc++-static on CentOS/Fedora/RHEL). \ +)) + define Require/ncurses echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \ gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses @@ -98,6 +108,15 @@ $(eval $(call Require,zlib, \ Please install zlib. (Missing libz.so or zlib.h) \ )) +define Require/zlib-static + echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \ + gcc -include zlib.h -x c -static -o $(TMP_DIR)/a.out - -lz +endef + +$(eval $(call Require,zlib-static, \ + Please install a static zlib. (zlib-static on CentOS/Fedora/RHEL). \ +)) + $(eval $(call RequireCommand,gawk, \ Please install GNU awk. \ )) |