Changeset 5416
- Timestamp:
- Aug 11, 2016 3:10:37 AM (8 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/aconfigure
r5414 r5416 7955 7955 # Check if SRTP should be compiled with OpenSSL 7956 7956 # support, to enable cryptos such as AES GCM 7957 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EVP_aes_128_gcm in -l ssl" >&57958 $as_echo_n "checking for EVP_aes_128_gcm in -l ssl... " >&6; }7959 if ${ac_cv_lib_ ssl_EVP_aes_128_gcm+:} false; then :7957 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EVP_aes_128_gcm in -lcrypto" >&5 7958 $as_echo_n "checking for EVP_aes_128_gcm in -lcrypto... " >&6; } 7959 if ${ac_cv_lib_crypto_EVP_aes_128_gcm+:} false; then : 7960 7960 $as_echo_n "(cached) " >&6 7961 7961 else 7962 7962 ac_check_lib_save_LIBS=$LIBS 7963 LIBS="-l ssl$LIBS"7963 LIBS="-lcrypto $LIBS" 7964 7964 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7965 7965 /* end confdefs.h. */ … … 7981 7981 _ACEOF 7982 7982 if ac_fn_c_try_link "$LINENO"; then : 7983 ac_cv_lib_ ssl_EVP_aes_128_gcm=yes7984 else 7985 ac_cv_lib_ ssl_EVP_aes_128_gcm=no7983 ac_cv_lib_crypto_EVP_aes_128_gcm=yes 7984 else 7985 ac_cv_lib_crypto_EVP_aes_128_gcm=no 7986 7986 fi 7987 7987 rm -f core conftest.err conftest.$ac_objext \ … … 7989 7989 LIBS=$ac_check_lib_save_LIBS 7990 7990 fi 7991 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ ssl_EVP_aes_128_gcm" >&57992 $as_echo "$ac_cv_lib_ ssl_EVP_aes_128_gcm" >&6; }7993 if test "x$ac_cv_lib_ ssl_EVP_aes_128_gcm" = xyes; then :7991 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_EVP_aes_128_gcm" >&5 7992 $as_echo "$ac_cv_lib_crypto_EVP_aes_128_gcm" >&6; } 7993 if test "x$ac_cv_lib_crypto_EVP_aes_128_gcm" = xyes; then : 7994 7994 ac_ssl_has_aes_gcm=1 7995 7995 fi 7996 7996 7997 7997 if test "x$ac_ssl_has_aes_gcm" = "x1"; then 7998 { $as_echo "$as_me:${as_lineno-$LINENO}: result: OpenSSL has AES GCM support, SRTP will use OpenSS l version" >&57999 $as_echo "OpenSSL has AES GCM support, SRTP will use OpenSS l version" >&6; }7998 { $as_echo "$as_me:${as_lineno-$LINENO}: result: OpenSSL has AES GCM support, SRTP will use OpenSSL" >&5 7999 $as_echo "OpenSSL has AES GCM support, SRTP will use OpenSSL" >&6; } 8000 8000 else 8001 8001 { $as_echo "$as_me:${as_lineno-$LINENO}: result: OpenSSL AES GCM support not found, SRTP will only support AES CM cryptos" >&5 -
pjproject/trunk/aconfigure.ac
r5414 r5416 1607 1607 AC_CHECK_LIB(crypto,EVP_aes_128_gcm,[ac_ssl_has_aes_gcm=1]) 1608 1608 if test "x$ac_ssl_has_aes_gcm" = "x1"; then 1609 AC_MSG_RESULT([OpenSSL has AES GCM support, SRTP will use OpenSS l version])1609 AC_MSG_RESULT([OpenSSL has AES GCM support, SRTP will use OpenSSL]) 1610 1610 else 1611 1611 AC_MSG_RESULT([OpenSSL AES GCM support not found, SRTP will only support AES CM cryptos])
Note: See TracChangeset
for help on using the changeset viewer.