changeset 976:d530e5fb506a

Fix SSL on OS X We need libcrypto on OS X, for SSL support. Thanks to Alexis Hildebrandt for the information.
author Mikael Berthe <mikael@lilotux.net>
date Tue, 10 Oct 2006 19:43:32 +0200
parents c3198eea6c3b
children 5b01de4ac5e1
files mcabber/configure.ac
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/mcabber/configure.ac	Sun Oct 01 23:59:07 2006 +0200
+++ b/mcabber/configure.ac	Tue Oct 10 19:43:32 2006 +0200
@@ -118,11 +118,7 @@
         CFLAGS="$CFLAGS -I${with_openssl}"
         AC_DEFINE([HAVE_OPENSSL], [], [OpenSSL])
         AC_MSG_RESULT([found in $with_openssl])
-        AC_CHECK_LIB(crypto, main, [
-                AC_CHECK_LIB(crypto, SSLeay_add_all_algorithms, [
-                    AC_DEFINE([HAVE_SSLEAY], [], [SSLeay])
-                ])
-            ])
+        AC_CHECK_LIB(crypto, main)
         AC_CHECK_LIB(ssl, main)
     else
         AC_MSG_RESULT([not found or disabled])