You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2011/02/23 21:27:54 UTC

svn commit: r1073930 - /thrift/trunk/configure.ac

Author: roger
Date: Wed Feb 23 20:27:54 2011
New Revision: 1073930

URL: http://svn.apache.org/viewvc?rev=1073930&view=rev
Log:
THRIFT-1071 configure.ac checks for openssl


Modified:
    thrift/trunk/configure.ac

Modified: thrift/trunk/configure.ac
URL: http://svn.apache.org/viewvc/thrift/trunk/configure.ac?rev=1073930&r1=1073929&r2=1073930&view=diff
==============================================================================
--- thrift/trunk/configure.ac (original)
+++ thrift/trunk/configure.ac Wed Feb 23 20:27:54 2011
@@ -301,6 +301,9 @@ AC_CHECK_HEADERS([sys/time.h])
 AC_CHECK_HEADERS([unistd.h])
 AC_CHECK_HEADERS([libintl.h])
 AC_CHECK_HEADERS([malloc.h])
+AC_CHECK_HEADERS([openssl/ssl.h])
+AC_CHECK_HEADERS([openssl/rand.h])
+AC_CHECK_HEADERS([openssl/x509v3.h])
 
 AC_CHECK_LIB(pthread, pthread_create)
 dnl NOTE(dreiss): I haven't been able to find any really solid docs
@@ -310,6 +313,7 @@ dnl of the POSIX Real-Time Extensions.  
 dnl and we haven't yet found a system where this is a problem.
 AC_CHECK_LIB(rt, clock_gettime)
 AC_CHECK_LIB(socket, setsockopt)
+AC_CHECK_LIB(ssl, SSL_ctrl)
 
 AC_TYPE_INT16_T
 AC_TYPE_INT32_T