summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2012-05-28 14:46:52 -0400
committerMichael Steinert <mike.steinert@gmail.com>2012-05-29 12:08:11 -0600
commit4aec7e615f6111b6c55aac20877446dfb2fb82ce (patch)
tree968132a4dc20f25144a8b7d9e65fa0013710a483
parentf4a22243785f0fd935623c834aceb8c26df3bf44 (diff)
downloadrabbitmq-c-github-ask-4aec7e615f6111b6c55aac20877446dfb2fb82ce.tar.gz
Relaxing restriction on OpenSSL to support v0.9.8
-rw-r--r--CMakeLists.txt2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9f18495..1ae0b7b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -64,7 +64,7 @@ mark_as_advanced(AMQP_CODEGEN_DIR)
find_package(POPT)
find_package(XmlTo)
-find_package(OpenSSL 1.0.0)
+find_package(OpenSSL 0.9.8)
if (POPT_FOUND AND XmlTo_FOUND)
set(DO_DOCS ON)
diff --git a/configure.ac b/configure.ac
index cfd93ef..50a78a2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -122,7 +122,7 @@ AS_IF([test "x$with_ssl" = "xcyassl"],
[test "x$with_ssl" = "xgnutls"],
[PKG_CHECK_MODULES([SSL], [gnutls],, [with_ssl=no])],
[test "x$with_ssl" = "xopenssl"],
- [PKG_CHECK_MODULES([SSL], [openssl >= 1.0.0],, [with_ssl=no])],
+ [PKG_CHECK_MODULES([SSL], [openssl >= 0.9.8],, [with_ssl=no])],
[test "x$with_ssl" = "xpolarssl"],
[AX_LIB_POLARSSL([SSL_CFLAGS=$POLARSSL_CFLAGS
SSL_LIBS=$POLARSSL_LIBS],