- Timestamp:
- Oct 5, 2009 10:16:37 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r23545 r23547 107 107 GENISOIMAGE="genisoimage" 108 108 MKISOFS="mkisofs" 109 INCCRYPTO="" 109 110 LIBCRYPTO="-lcrypto" 110 111 LIBPTHREAD="-lpthread" … … 818 819 { 819 820 printf("found version %s", OPENSSL_VERSION_TEXT); 820 #if OPENSSL_VERSION_NUMBER >= 0x0090 700821 #if OPENSSL_VERSION_NUMBER >= 0x0090800 821 822 printf(", OK.\n"); 822 823 return 0; 823 824 #else 824 printf(", expected version 0.9. 7or higher\n");825 printf(", expected version 0.9.8 or higher\n"); 825 826 return 1; 826 827 #endif 827 828 } 828 829 EOF 829 if test_compile $LIBCRYPTOlibcrypto openssl; then830 if test_compile "$INCCRYPTO $LIBCRYPTO" libcrypto openssl; then 830 831 if test_execute nofatal; then 831 cnf_append "SDK_VBOX_OPENSSL_INCS" " "832 cnf_append "SDK_VBOX_OPENSSL_INCS" "`strip_I "$INCCRYPTO"`" 832 833 cnf_append "SDK_VBOX_OPENSSL_LIBS" "`strip_l "$LIBCRYPTO"`" 833 834 fi … … 2068 2069 QT4DIR_PKGCONFIG=0 2069 2070 ;; 2071 --with-openssl-dir=*) 2072 OPENSSLDIR=`echo $option | cut -d'=' -f2` 2073 INCCRYPTO="-I${OPENSSLDIR}/include" 2074 LIBCRYPTO="${OPENSSLDIR}/lib/libcrypto.a" 2075 ;; 2070 2076 --with-gsoap-dir=*) 2071 2077 GSOAP=`echo $option | cut -d'=' -f2`
Note:
See TracChangeset
for help on using the changeset viewer.