summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-06-26 11:49:15 +0000
committerAlan Conway <aconway@apache.org>2007-06-26 11:49:15 +0000
commit0bcfd29820a0423d623600684df2900fc1037492 (patch)
tree10f885469e6fc959a588c8f7e821bd7d22cc0550 /qpid/cpp
parent72d901f38c7f2f6bfcda677f5818b36474e2f570 (diff)
downloadqpid-python-0bcfd29820a0423d623600684df2900fc1037492.tar.gz
Fix bug in cluster-disabled mode.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@550775 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/configure.ac b/qpid/cpp/configure.ac
index 67fe40d84d..9dfbf44ce5 100644
--- a/qpid/cpp/configure.ac
+++ b/qpid/cpp/configure.ac
@@ -173,7 +173,8 @@ if test x$libcpg = xyes -a x$cpg_h = xyes; then
AM_CONDITIONAL([CLUSTER], true)
CPPFLAGS+=-DCLUSTER
else
- LDFLAGS=LDFLAGS_save
+ AM_CONDITIONAL([CLUSTER], false)
+ LDFLAGS=$LDFLAGS_save
fi
if test x$libcpg = xno -a x$cpg_h = xyes; then
AC_MSG_WARN([Found cpg.h but libcpg is missing or does not contain cpg_local_get. Need build of openais whitetank branch head as of 2007-06-20])