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
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"