From: Ruediger Pluem Date: Mon, 7 Jan 2008 15:01:56 +0000 (+0000) Subject: * Revert breakage to ssl detection; while ssl libs were only X-Git-Tag: 2.0.63~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9ecb48ceafe276ce8373c9735c3ddfe0008b6f3;p=thirdparty%2Fapache%2Fhttpd.git * Revert breakage to ssl detection; while ssl libs were only linked for ab, mod_ssl in 2.0.62, the choice of libs were broken. Patch to 2.0 (applicable to no other branch); Reviewed by: wrowe, sctemme, rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@609625 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 45f1783c116..e696df87cf0 100644 --- a/STATUS +++ b/STATUS @@ -115,12 +115,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] - * configure: Revert breakage to ssl detection; while ssl libs were only - linked for ab, mod_ssl in 2.0.62, the choice of libs were broken. - Patch to 2.0 (applicable to no other branch); - http://people.apache.org/~wrowe/fix-no-sslc-2.0.patch - +1; wrowe, sctemme, rpluem - PATCHES PROPOSED TO BACKPORT FROM TRUNK: [ please place SVN revisions from trunk here, so it is easy to identify exactly what the proposed changes are! Add all new diff --git a/acinclude.m4 b/acinclude.m4 index 6819440599d..993b8a812de 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -492,21 +492,13 @@ if test "x$ap_ssltk_base" = "x"; then fi fi # Put SSL libraries in SSL_LIBS. - if test "$ap_ssltk_type" = "openssl"; then - APR_SETVAR(SSL_LIBS, [-lssl -lcrypto]) - else - APR_SETVAR(SSL_LIBS, [-lsslc]) - fi + APR_SETVAR(SSL_LIBS, [-lssl -lcrypto]) pkg-config openssl 2> /dev/null if test $? -eq 0; then ap_ssltk_incdep=`pkg-config --cflags-only-I openssl` APR_ADDTO(INCLUDES, $ap_ssltk_incdep) ap_ssltk_libdep=`pkg-config --libs openssl` - if test "$ap_ssltk_type" = "openssl"; then - APR_SETVAR(SSL_LIBS, $ap_ssltk_libdep) - else - APR_SETVAR(SSL_LIBS, $ap_ssltk_libdep) - fi + APR_SETVAR(SSL_LIBS, $ap_ssltk_libdep) fi APACHE_SUBST(SSL_LIBS) ap_cv_ssltk="$ap_ssltk_base"