Ticket #59009: patch-openssl.diff
File patch-openssl.diff, 1.0 KB (added by RJVB (René Bertin), 5 years ago) |
---|
-
configure
a b 13077 13077 int 13078 13078 main () 13079 13079 { 13080 SSLeay_add_all_algorithms();13080 OpenSSL_add_all_algorithms(); 13081 13081 ; 13082 13082 return 0; 13083 13083 } … … 13101 13101 int 13102 13102 main () 13103 13103 { 13104 SSLeay_add_all_algorithms();13104 OpenSSL_add_all_algorithms(); 13105 13105 ; 13106 13106 return 0; 13107 13107 } -
configure.ac
a b 2673 2673 AC_MSG_CHECKING([if programs using OpenSSL functions will link]) 2674 2674 AC_LINK_IFELSE( 2675 2675 [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]], 2676 [[ SSLeay_add_all_algorithms(); ]])],2676 [[ OpenSSL_add_all_algorithms(); ]])], 2677 2677 [ 2678 2678 AC_MSG_RESULT([yes]) 2679 2679 ], … … 2684 2684 AC_MSG_CHECKING([if programs using OpenSSL need -ldl]) 2685 2685 AC_LINK_IFELSE( 2686 2686 [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]], 2687 [[ SSLeay_add_all_algorithms(); ]])],2687 [[ OpenSSL_add_all_algorithms(); ]])], 2688 2688 [ 2689 2689 AC_MSG_RESULT([yes]) 2690 2690 ],