summaryrefslogtreecommitdiff
path: root/aconfigure.ac
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2016-08-08 11:19:35 +0000
committerLiong Sauw Ming <ming@teluu.com>2016-08-08 11:19:35 +0000
commit383f6b6e0abeca9c60adb93edff4818bae550c1c (patch)
tree0577010da6e5f6f20afa30be8fe8bf162ed78205 /aconfigure.ac
parent3cd6641720bf810a675a255bfdc5dd1906873193 (diff)
Re #1943: Fixed incorrect configure script.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5414 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'aconfigure.ac')
-rw-r--r--aconfigure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/aconfigure.ac b/aconfigure.ac
index 795c6e4e..ce50f116 100644
--- a/aconfigure.ac
+++ b/aconfigure.ac
@@ -1603,7 +1603,8 @@ AC_ARG_ENABLE(ssl,
AC_MSG_RESULT([OpenSSL library found, SSL support enabled])
# Check if SRTP should be compiled with OpenSSL
- # support, to enable cryptos such as AES GCM AC_CHECK_LIB(crypto,EVP_aes_128_gcm,[ac_ssl_has_aes_gcm=1])
+ # support, to enable cryptos such as AES GCM
+ 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 version])
else