Browse Source

prereq-build: rename the openssl check to libssl, add back the old check - it is required after all

Signed-off-by: Felix Fietkau <[email protected]>

SVN-Revision: 42999
Felix Fietkau 11 years ago
parent
commit
549f7d0366
1 changed files with 7 additions and 3 deletions
  1. 7 3
      include/prereq-build.mk

+ 7 - 3
include/prereq-build.mk

@@ -168,13 +168,17 @@ $(eval $(call RequireCommand,svn, \
 	Please install the subversion client. \
 	Please install the subversion client. \
 ))
 ))
 
 
-define Require/openssl
+define Require/libssl
 	echo 'int main(int argc, char **argv) { SSL_library_init(); return 0; }' | \
 	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
 		gcc -include openssl/ssl.h -x c -o $(TMP_DIR)/a.out - -lcrypto -lssl
 endef
 endef
 
 
-$(eval $(call Require,openssl, \
-	Please install openssl (with development headers) \
+$(eval $(call Require,libssl, \
+	Please install the openssl library (with development headers) \
+))
+
+$(eval $(call RequireCommand,openssl, \
+       Please install openssl. \
 ))
 ))
 
 
 define Require/gnu-find
 define Require/gnu-find