From 898afb6de15328123e315d411956bc72569bc3f2 Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Thu, 19 Jul 2007 12:23:29 +0000 Subject: 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 --- cpp/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp') 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]) -- cgit v1.2.1