diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-09-29 11:37:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-09-29 11:37:10 +0000 |
commit | 82b6a500eb89247f572976145dfffb2e0225ecf0 (patch) | |
tree | 98f8a03e75b991bc35d6d8b46485c64f3f302225 /include | |
parent | 9619122a37468984c812d1409a86a423d5934e08 (diff) | |
download | master-187ad058-82b6a500eb89247f572976145dfffb2e0225ecf0.tar.gz master-187ad058-82b6a500eb89247f572976145dfffb2e0225ecf0.tar.bz2 master-187ad058-82b6a500eb89247f572976145dfffb2e0225ecf0.zip |
prereq-build: test availability of Perl Thread::Queue module
This is needed for building automake.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47069 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/prereq-build.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index f5fb9e270a..6f491375c6 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -76,6 +76,10 @@ $(eval $(call TestHostCommand,libssl, \ echo 'int main(int argc, char **argv) { SSL_library_init(); return 0; }' | \ gcc -include openssl/ssl.h -x c -o $(TMP_DIR)/a.out - -lcrypto -lssl)) +$(eval $(call TestHostCommand,perl-thread-queue, \ + Please install the Perl Thread::Queue module, \ + perl -MThread::Queue -e 1)) + $(eval $(call SetupHostCommand,tar,Please install GNU 'tar', \ gtar --version 2>&1 | grep GNU, \ |