summaryrefslogtreecommitdiff
path: root/aconfigure.ac
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2017-01-23 05:18:21 +0000
committerNanang Izzuddin <nanang@teluu.com>2017-01-23 05:18:21 +0000
commit19ffc925477f06d8296dfcc1cbd1aac7783446b2 (patch)
tree2c0e5e78b34d1436181e4ccbe2f17b758609bf9e /aconfigure.ac
parentf6d78bf855f2d564f9e383508908631a4668e2af (diff)
Re #1932: Updated configure script for AES-GCM support detection.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5540 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'aconfigure.ac')
-rw-r--r--aconfigure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/aconfigure.ac b/aconfigure.ac
index c7e8d45a..bff5cd4c 100644
--- a/aconfigure.ac
+++ b/aconfigure.ac
@@ -1563,10 +1563,9 @@ AC_ARG_ENABLE(ssl,
# support, to enable cryptos such as AES GCM.
# EVP_CIPHER_CTX is now opaque in OpenSSL 1.1.0, libsrtp 1.5.4 uses it as a transparent type.
- # AC_CHECK_LIB(crypto,EVP_aes_128_gcm,[ac_ssl_has_aes_gcm=1])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <openssl/evp.h>]],
[EVP_CIPHER_CTX ctx;EVP_aes_128_gcm();])],
- [ac_ssl_has_aes_gcm=1])
+ [AC_CHECK_LIB(crypto,EVP_aes_128_gcm,[ac_ssl_has_aes_gcm=1])])
if test "x$ac_ssl_has_aes_gcm" = "x1"; then
AC_MSG_RESULT([OpenSSL has AES GCM support, SRTP will use OpenSSL])
else