summaryrefslogtreecommitdiff
path: root/cpp/configure.ac
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-08-24 21:04:14 +0000
committerAlan Conway <aconway@apache.org>2007-08-24 21:04:14 +0000
commit69237a07946e9cf442a9bd86e97956cc7f17a33e (patch)
tree2bcfe5baeb7eb1091e608611f08197e4dc343005 /cpp/configure.ac
parentfa15956ebff52da55526b7a9f0cce0f7b904fcbf (diff)
downloadqpid-python-69237a07946e9cf442a9bd86e97956cc7f17a33e.tar.gz
* src/qpid/broker/Daemon.cpp: Additional logging.
* configure.ac: Fixed problem with openais check. * src/tests/test_env: Remove LD_PRELOAD dlclose_noop, only for CppUnit. * src/tests/run-unit-tests: Added LD_PRELOAD dlclose_noop. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@569520 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/configure.ac')
-rw-r--r--cpp/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/configure.ac b/cpp/configure.ac
index 25e4bd0d7f..cdfe727929 100644
--- a/cpp/configure.ac
+++ b/cpp/configure.ac
@@ -140,7 +140,7 @@ AC_CHECK_HEADERS([boost/shared_ptr.hpp uuid/uuid.h],,
# Check for cluster requirements. Need openais 0.80.3 or higher.x1
save_ldflags=$LDFLAGS
LDFLAGS="$LDFLAGS -L/usr/lib/openais -L/usr/lib64/openais"
-AC_CHECK_LIB([cpg],[cpg_local_get],[cpg_lib=yes])
+AC_CHECK_LIB([cpg],[cpg_local_get],[cpg_lib=yes],[cpg_lib=no])
AC_CHECK_HEADER([openais/cpg.h],[cpg_h=yes])
test x$cpg_lib = xyes -a x$cpg_h = xyes && enable_CLUSTER=yes