From c0699e9c0340edbb59260603583ce6b6d95da0ab Mon Sep 17 00:00:00 2001 From: tbbulloc Date: Mon, 4 Jun 2007 01:37:18 +0000 Subject: [PATCH] Remove unnecessary openssl configuration checks --- httperf/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httperf/configure.ac b/httperf/configure.ac index e21cac3..43874ae 100755 --- a/httperf/configure.ac +++ b/httperf/configure.ac @@ -30,7 +30,7 @@ AC_PROG_LIBTOOL AC_CHECK_LIB(event, event_init, , AC_MSG_ERROR([libevent is required to build httperf]) ) AC_CHECK_LIB(m, sqrt) AC_CHECK_LIB(crypto, main) -AC_CHECK_LIB(ssl, SSL_version, , AC_MSG_WARN([SSL Disabled]), [-lcrypto -ldl -lz] ) +AC_CHECK_LIB(ssl, SSL_version, , AC_MSG_WARN([SSL Disabled]) ) # The following checks are for solaris and its ilk AC_SEARCH_LIBS([getsockopt], [socket]) AC_SEARCH_LIBS([socket], [socket nsl])