You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/06/26 13:49:17 UTC

svn commit: r550775 - /incubator/qpid/trunk/qpid/cpp/configure.ac

Author: aconway
Date: Tue Jun 26 04:49:15 2007
New Revision: 550775

URL: http://svn.apache.org/viewvc?view=rev&rev=550775
Log:
Fix bug in cluster-disabled mode.

Modified:
    incubator/qpid/trunk/qpid/cpp/configure.ac

Modified: incubator/qpid/trunk/qpid/cpp/configure.ac
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/configure.ac?view=diff&rev=550775&r1=550774&r2=550775
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/configure.ac (original)
+++ incubator/qpid/trunk/qpid/cpp/configure.ac Tue Jun 26 04:49:15 2007
@@ -173,7 +173,8 @@
    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])