From: Michael Jerris Date: Mon, 23 Feb 2015 16:51:40 +0000 (-0500) Subject: FS-7314 #resolve #comment try to fix openssl configure detection failure caused by... X-Git-Tag: v1.4.17~1^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=320d2eae5253f2a5c7f440e9291d4cc3fab7e3d2;p=thirdparty%2Ffreeswitch.git FS-7314 #resolve #comment try to fix openssl configure detection failure caused by broken commit upstream in openssl 1.0.2. I don't have a box with this version of openssl so you'll need to let me know if this doesn't work --- diff --git a/libs/iksemel/openssl.m4 b/libs/iksemel/openssl.m4 index 8adea2192e..6bf1851021 100644 --- a/libs/iksemel/openssl.m4 +++ b/libs/iksemel/openssl.m4 @@ -33,7 +33,7 @@ else AC_CHECK_LIB(ssl, TLSv1_method,, HAVE_TLS=0 AC_MSG_WARN(OpenSSL protocol library was not found)) - ],[AC_MSG_WARN(OpenSSL include files were not found)]) + ],[AC_MSG_WARN(OpenSSL include files were not found)],[#include ]) fi if test x$HAVE_SSL = x1; then diff --git a/libs/sofia-sip/m4/sac-openssl.m4 b/libs/sofia-sip/m4/sac-openssl.m4 index 7daf7f4773..289d3e132e 100644 --- a/libs/sofia-sip/m4/sac-openssl.m4 +++ b/libs/sofia-sip/m4/sac-openssl.m4 @@ -33,7 +33,7 @@ else AC_CHECK_LIB(ssl, TLSv1_method,, HAVE_TLS=0 AC_MSG_WARN(OpenSSL protocol library was not found)) - ],[AC_MSG_WARN(OpenSSL include files were not found)]) + ],[AC_MSG_WARN(OpenSSL include files were not found)],[#include ]) fi if test x$HAVE_OPENSSL = x1; then