From c34bc1a5b78e47a8b681aa2458d5636c76e57bce Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 16 Feb 2004 23:46:14 +0000 Subject: [PATCH] For SSL, use -lssl -lcrypto on systems that don't have pkg-config. --- CHANGELOG | 2 ++ configure.in | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 93799f0..550eb74 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,7 @@ Possible compatibility problems with earlier versions marked with '*'. +For SSL, use -lssl -lcrypto on systems that don't have pkg-config. + --- 2.0.12 2004/02/16 Added member 'schema' to bend_explain_rr structure so that backend diff --git a/configure.in b/configure.in index 17133fd..7c1e013 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl YAZ Toolkit, Index Data 1994-2004 dnl See the file LICENSE for details. -dnl $Id: configure.in,v 1.127 2004-02-16 18:28:18 adam Exp $ +dnl $Id: configure.in,v 1.128 2004-02-16 23:46:14 adam Exp $ AC_INIT(include/yaz/yaz-version.h) AM_INIT_AUTOMAKE(yaz, 2.0.12) AM_MAINTAINER_MODE @@ -139,7 +139,7 @@ if test "$openssl" != "no"; then AC_CHECK_HEADER(openssl/ssl.h,[sslver=yes]) fi if test "$sslver" = "yes"; then - SSL_LIBS="$SSL_LIBS -lssl" + SSL_LIBS="-lssl $SSL_LIBS" fi fi if test "$sslver" != "no"; then -- 1.7.10.4