diff options
author | Madhusudan Mathihalli <madhum@apache.org> | 2003-03-13 21:42:06 +0100 |
---|---|---|
committer | Madhusudan Mathihalli <madhum@apache.org> | 2003-03-13 21:42:06 +0100 |
commit | c686e1d07064ebeb12afe8a5ba973a621f7c4328 (patch) | |
tree | eb7a3098be7e7d0350a229474e51b411cd2ba931 /acinclude.m4 | |
parent | Replace the APACHE_CHECK_SSL_TOOLKIT method with a cleaner one, using (diff) | |
download | apache2-c686e1d07064ebeb12afe8a5ba973a621f7c4328.tar.xz apache2-c686e1d07064ebeb12afe8a5ba973a621f7c4328.zip |
Modify the APACHE_CHECK_SSL_TOOLKIT to detect SSL-C (atleast version 2.1).
Submitted by: Madhusudan Mathihalli
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99000 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 233a452975..feb2683e95 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -369,8 +369,12 @@ if test "x$ap_ssltk_configured" = "x"; then dnl so it's SSL-C - report, then test anything relevant echo "... SSL/TLS support configuring for SSL-C" AC_MSG_CHECKING(for SSL-C version) - dnl FIXME: we currently don't check anything for SSL-C - AC_MSG_RESULT([OK, but I didn't really check]) + AC_TRY_COMPILE([#include <sslc.h>], +[#if !defined(SSLC_VERSION_NUMBER) || SSLC_VERSION_NUMBER < 0x2100 +#error "invalid SSL-C version" +#endif], + [AC_MSG_RESULT(OK)], + [AC_MSG_ERROR([SSL-C Versions < 2.1 has not been tested])]) fi dnl restore CPPFLAGS=$saved_CPPFLAGS @@ -389,8 +393,12 @@ if test "x$ap_ssltk_configured" = "x"; then dnl make sure "other" flags are available so libcrypto and libssl can link LIBS="$LIBS `$apr_config --libs`" liberrors="" - AC_CHECK_LIB(crypto, SSLeay_version, [], [liberrors="yes"]) - AC_CHECK_LIB(ssl, SSL_CTX_new, [], [liberrors="yes"]) + if test "$ap_ssltk_type" = "openssl"; then + AC_CHECK_LIB(crypto, SSLeay_version, [], [liberrors="yes"]) + AC_CHECK_LIB(ssl, SSL_CTX_new, [], [liberrors="yes"]) + else + AC_CHECK_LIB(sslc, SSL_CTX_new, [], [liberrors="yes"]) + fi if test "x$liberrors" != "x"; then AC_MSG_ERROR([... Error, SSL/TLS libraries were missing or unusable]) fi @@ -416,9 +424,13 @@ if test "x$ap_ssltk_configured" = "x"; then APR_ADDTO(LDFLAGS, ["$ap_platform_runtime_link_flag$ap_ssltk_libdir"]) fi fi - dnl (d) add "-lssl -lcrypto" to LIBS because restoring LIBS after - dnl AC_CHECK_LIB() obliterates any flags AC_CHECK_LIB() added. - APR_ADDTO(LIBS, [-lssl -lcrypto]) + dnl (d) add "-lssl -lcrypto" OR "-lsslc" to LIBS because restoring LIBS + dnl after AC_CHECK_LIB() obliterates any flags AC_CHECK_LIB() added. + if test "$ap_ssltk_type" = "openssl"; then + APR_ADDTO(LIBS, [-lssl -lcrypto]) + else + APR_ADDTO(LIBS, [-lsslc]) + fi fi ]) |