Author: astitcher
Date: Thu Jul 19 05:23:29 2007
New Revision: 557593
URL: http://svn.apache.org/viewvc?view=rev&rev=557593
Log:
[EMAIL PROTECTED]: andrew | 2007-07-19 13:23:15 +0100
Make --disable-apr-platform the default
Modified:
incubator/qpid/trunk/qpid/ (props changed)
incubator/qpid/trunk/qpid/cpp/configure.ac
Propchange: incubator/qpid/trunk/qpid/
------------------------------------------------------------------------------
--- svk:merge (original)
+++ svk:merge Thu Jul 19 05:23:29 2007
@@ -1 +1,2 @@
8427bd24-ae5a-4eba-a324-d2fc9c9c6c77:/local/qpid.0-9.ams:1224
+c99eadab-1afc-4df6-acde-a632afdabecb:/local/qpid/trunk/qpid:702
Modified: incubator/qpid/trunk/qpid/cpp/configure.ac
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/configure.ac?view=diff&rev=557593&r1=557592&r2=557593
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/configure.ac (original)
+++ incubator/qpid/trunk/qpid/cpp/configure.ac Thu Jul 19 05:23:29 2007
@@ -103,12 +103,12 @@
AC_ARG_ENABLE([apr-platform],
[AS_HELP_STRING([--enable-apr-platform],
- [use the Apache Portable Runtime library for platform (default yes)])],
+ [use the Apache Portable Runtime library for platform (default no)])],
[case $enableval in
yes|no) enable_APR_PLATFORM=$enableval;;
*) AC_MSG_ERROR([Invalid value for --enable-apr-platform: $enableval]);;
esac],
- [enable_APR_PLATFORM=yes]
+ [enable_APR_PLATFORM=no]
)
AM_CONDITIONAL([USE_APR_PLATFORM], [test x$enable_APR_PLATFORM = xyes])