You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2010/06/04 21:21:32 UTC

svn commit: r951535 - /activemq/activemq-cpp/trunk/activemq-cpp/configure.ac

Author: tabish
Date: Fri Jun  4 19:21:32 2010
New Revision: 951535

URL: http://svn.apache.org/viewvc?rev=951535&view=rev
Log:
Add some more checks for includes and functions needed for secure random generators.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/configure.ac

Modified: activemq/activemq-cpp/trunk/activemq-cpp/configure.ac
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac?rev=951535&r1=951534&r2=951535&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/configure.ac (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/configure.ac Fri Jun  4 19:21:32 2010
@@ -120,6 +120,8 @@ AC_CHECK_HEADERS([repcdce.h])
 AC_CHECK_HEADERS([signal.h])
 AC_CHECK_HEADERS([string.h])
 AC_CHECK_HEADERS([sched.h])
+AC_CHECK_HEADERS([time.h])
+AC_CHECK_HEADERS([limits.h])
 AC_CHECK_HEADERS([sys/filio.h])
 AC_CHECK_HEADERS([sys/ioctl.h])
 AC_CHECK_HEADERS([sys/select.h])
@@ -133,7 +135,7 @@ AC_CHECK_HEADERS([pthread.h])
 AC_CHECK_HEADERS([errno.h])
 AC_CHECK_HEADERS([semaphore.h])
 
-AC_CHECK_FUNCS([ioctl select gettimeofday time ftime])
+AC_CHECK_FUNCS([ioctl select gettimeofday time ftime random srandom])
 
 AMQ_FIND_CPPUNIT( 1.10.2, cppunit=yes, cppunit=no;
     AC_MSG_RESULT([no. Unit and Integration tests disabled])