summaryrefslogtreecommitdiff
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
commit1e3138ae353508b56bc1ad9e69a11c39614630c9 (patch)
tree14d81e6751936ea81f9a3227ddd398908156ed2f
parent4cbe68f4a2212eb44a8660bfd76c09f11a45d3c1 (diff)
downloadqpid-python-1e3138ae353508b56bc1ad9e69a11c39614630c9.tar.gz
Fix bug in cluster-disabled mode.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@550775 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/configure.ac b/cpp/configure.ac
index 67fe40d84d..9dfbf44ce5 100644
--- a/cpp/configure.ac
+++ b/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])