Ticket #59009: patch-openssl.diff

File patch-openssl.diff, 1.0 KB (added by RJVB (René Bertin), 5 years ago)
  • configure

    a b  
    1307713077int
    1307813078main ()
    1307913079{
    13080  SSLeay_add_all_algorithms();
     13080 OpenSSL_add_all_algorithms();
    1308113081  ;
    1308213082  return 0;
    1308313083}
     
    1310113101int
    1310213102main ()
    1310313103{
    13104  SSLeay_add_all_algorithms();
     13104 OpenSSL_add_all_algorithms();
    1310513105  ;
    1310613106  return 0;
    1310713107}
  • configure.ac

    a b  
    26732673        AC_MSG_CHECKING([if programs using OpenSSL functions will link])
    26742674        AC_LINK_IFELSE(
    26752675                [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]],
    2676                 [[ SSLeay_add_all_algorithms(); ]])],
     2676                [[ OpenSSL_add_all_algorithms(); ]])],
    26772677                [
    26782678                        AC_MSG_RESULT([yes])
    26792679                ],
     
    26842684                        AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
    26852685                        AC_LINK_IFELSE(
    26862686                                [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]],
    2687                                 [[ SSLeay_add_all_algorithms(); ]])],
     2687                                [[ OpenSSL_add_all_algorithms(); ]])],
    26882688                                [
    26892689                                        AC_MSG_RESULT([yes])
    26902690                                ],