prereq-build: replace the openssl command check with a check for headers

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42995 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau 2014-10-20 09:17:56 +00:00
parent 669f224beb
commit 1ce5222054

View File

@ -168,8 +168,13 @@ $(eval $(call RequireCommand,svn, \
Please install the subversion client. \
))
$(eval $(call RequireCommand,openssl, \
Please install openssl. \
define Require/openssl
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
endef
$(eval $(call Require,openssl, \
Please install openssl (with development headers) \
))
define Require/gnu-find