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

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

SVN-Revision: 42995
v19.07.3_mercusys_ac12_duma
Felix Fietkau 10 years ago
parent c68b74e5c4
commit 35b34b20d4

@ -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

Loading…
Cancel
Save