]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r711993 from trunk:
authorRuediger Pluem <rpluem@apache.org>
Mon, 24 Nov 2008 11:06:52 +0000 (11:06 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 24 Nov 2008 11:06:52 +0000 (11:06 +0000)
* Correctly set SSL_LIBS during openssl detection if pkgconfig is not available.

PR: 46018

Submitted by: rpluem
Reviewed by: rpluem, jim, jfclere

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@720165 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
acinclude.m4

diff --git a/CHANGES b/CHANGES
index 703a373392de7289029216ea73a3d3481b448c28..3546f797ef0f04319975f33d1242303409601ed8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.2.11
 
+  *) Build: Correctly set SSL_LIBS during openssl detection if pkgconfig is
+     not available. PR 46018 [Ruediger Pluem]
+
   *) mod_proxy_ajp: Do not fail if response data is sent before all request
      data is read. PR 45911 [Ruediger Pluem]
 
diff --git a/STATUS b/STATUS
index acaf42712b9e87c431c925bf0b48b11c00db433e..4accf166b43c44d0198700a242ff0ffc3a1043af 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -86,15 +86,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-   * Build: Correctly set SSL_LIBS during openssl detection if pkgconfig
-     is not available. This fixes a regression against 2.2.9.
-     PR 46018
-     Trunk version of patch:
-        http://svn.apache.org/viewvc?rev=711993&view=rev
-     Backport version for 2.2.x of patch:
-        Trunk version of patch works
-     +1: rpluem, jim, jfclere
-
     * mod_cache: Convert age of cached object to seconds before comparing it to
       age supplied by the request when checking whether to send a Warning
       header for a stale response. PR 39713.
index 1bb7c4af5e17b4c7cb485d10c10a838db7083133..29b7bee189090da0154e6496221a92c925492aee 100644 (file)
@@ -439,10 +439,10 @@ if test "x$ap_ssltk_configured" = "x"; then
         pkglookup="`$PKGCONFIG --libs-only-L --libs-only-other openssl`"
         APR_ADDTO(LDFLAGS, [$pkglookup])
       else
-        ap_ssltk_libs="-lssl -lcrypto"
+        ap_ssltk_libs="-lssl -lcrypto `$apr_config --libs`"
       fi
     else
-      ap_ssltk_libs="-lssl -lcrypto"
+      ap_ssltk_libs="-lssl -lcrypto `$apr_config --libs`"
     fi
   fi
   APR_SETVAR(SSL_LIBS, [$ap_ssltk_libs])