diff options
author | Ruediger Pluem <rpluem@apache.org> | 2008-11-06 22:23:21 +0000 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2008-11-06 22:23:21 +0000 |
commit | ed234afd2d7e7aacf0931fa4cfb074809ba37391 (patch) | |
tree | c85a8c81f260aef8f57d82062fb325cbe1f6ed29 /acinclude.m4 | |
parent | aa061ea33e12166fe10cf42346136fd693ffd51b (diff) | |
download | httpd-ed234afd2d7e7aacf0931fa4cfb074809ba37391.tar.gz |
* Correctly set SSL_LIBS during openssl detection if pkgconfig is not available.
PR: 46018
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@711993 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index f87e8a48ac..19d5848857 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -447,10 +447,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]) |