summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2007-07-19 12:23:29 +0000
committerAndrew Stitcher <astitcher@apache.org>2007-07-19 12:23:29 +0000
commit898afb6de15328123e315d411956bc72569bc3f2 (patch)
treefcd289a9b7a333b4002a4ba6e7ec7ac810ce664c
parent888c0bfbb1731124e1c84775400fcdad7798920e (diff)
downloadqpid-python-898afb6de15328123e315d411956bc72569bc3f2.tar.gz
r702@fuschia: andrew | 2007-07-19 13:23:15 +0100
Make --disable-apr-platform the default git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@557593 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/configure.ac b/cpp/configure.ac
index 07366a4a59..ffccd4edcb 100644
--- a/cpp/configure.ac
+++ b/cpp/configure.ac
@@ -103,12 +103,12 @@ AM_CONDITIONAL([USE_APR_NETIO], [test x$enable_APR_NETIO = xyes])
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])