From: Adam Dickmeiss Date: Mon, 16 Feb 2004 23:46:14 +0000 (+0000) Subject: For SSL, use -lssl -lcrypto on systems that don't have pkg-config. X-Git-Tag: YAZ.2.0.13~10 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=c34bc1a5b78e47a8b681aa2458d5636c76e57bce;hp=975c22d3fb94aaf91399f1967dbb173129205888 For SSL, use -lssl -lcrypto on systems that don't have pkg-config. --- 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