Ignore:
Timestamp:
Jul 6, 2017 5:00:30 AM (7 years ago)
Author:
nanang
Message:

Re #1993: Updated configure script to enable AES-GCM with OpenSSL 1.1.0 after updating bundled libsrtp version.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure.ac

    r5606 r5622  
    15821582                         
    15831583                        # EVP_CIPHER_CTX is now opaque in OpenSSL 1.1.0, libsrtp 1.5.4 uses it as a transparent type. 
     1584                        # Update 2.7: our bundled libsrtp has been upgraded to 2.1.0, 
     1585                        # so we can omit EVP_CIPHER_CTX definition check now. 
    15841586                        AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <openssl/evp.h>]], 
    1585                                                           [EVP_CIPHER_CTX ctx;EVP_aes_128_gcm();])], 
     1587                                                          [EVP_CIPHER_CTX *ctx;EVP_aes_128_gcm();])], 
    15861588                                          [AC_CHECK_LIB(crypto,EVP_aes_128_gcm,[ac_ssl_has_aes_gcm=1])]) 
    15871589                        if test "x$ac_ssl_has_aes_gcm" = "x1"; then 
Note: See TracChangeset for help on using the changeset viewer.