X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=include%2Fprereq-build.mk;h=c31020c3211d528acca14d8d4a1a233652dfb1d6;hb=3775796c70e236028b10e4b32545e49f6e454d70;hp=e9f3a0173f89990aa6ab4aefe9edd105a27ebdd3;hpb=b6fee4a3b3fcbf1b3117d1832d970a8b1b58dc11;p=openwrt-10.03%2F.git diff --git a/include/prereq-build.mk b/include/prereq-build.mk index e9f3a0173..c31020c32 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -9,6 +9,8 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/prereq.mk include $(INCLUDE_DIR)/host.mk +PKG_NAME:=Build dependency + define Require/non-root [ "$$(shell whoami)" != "root" ] endef @@ -50,7 +52,8 @@ $(eval $(call Require,working-gcc, \ define Require/working-g++ echo 'int main(int argc, char **argv) { return 0; }' | \ - g++ -x c++ -o $(TMP_DIR)/a.out -lstdc++ - + g++ -x c++ -o $(TMP_DIR)/a.out -lstdc++ - && \ + $(TMP_DIR)/a.out endef $(eval $(call Require,working-g++, \ @@ -76,6 +79,9 @@ $(eval $(call Require,zlib, \ Please install zlib. (Missing libz.so or zlib.h) \ )) +$(eval $(call RequireCommand,gawk, \ + Please install GNU awk. \ +)) $(eval $(call RequireCommand,bison, \ Please install GNU bison. \ @@ -112,3 +118,8 @@ endef $(eval $(call Require,gnutar, \ Please install GNU tar. \ )) + +$(eval $(call RequireCommand,autoconf, \ + Please install GNU autoconf. \ +)) +