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/08/30 15:23:40 UTC

svn commit: r571161 - in /incubator/qpid/trunk/qpid/cpp: configure.ac src/qpid/framing/Handler.h

Author: aconway
Date: Thu Aug 30 06:23:40 2007
New Revision: 571161

URL: http://svn.apache.org/viewvc?rev=571161&view=rev
Log:
	* configure.ac: Disabled cluster build temporarily while fixing build problems.
	* src/qpid/framing/Handler.h: Add missing default constructor.

Modified:
    incubator/qpid/trunk/qpid/cpp/configure.ac
    incubator/qpid/trunk/qpid/cpp/src/qpid/framing/Handler.h

Modified: incubator/qpid/trunk/qpid/cpp/configure.ac
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/configure.ac?rev=571161&r1=571160&r2=571161&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/configure.ac (original)
+++ incubator/qpid/trunk/qpid/cpp/configure.ac Thu Aug 30 06:23:40 2007
@@ -142,6 +142,10 @@
 AC_CHECK_HEADER([openais/cpg.h],[cpg_h=yes])
 test x$cpg_lib = xyes -a x$cpg_h = xyes && enable_CLUSTER=yes 
 
+# FIXME aconway 2007-08-30: Disable cluster till build problems
+# are fixed
+enable_CLUSTER=no
+     
 if test x$enable_CLUSTER = xyes; then
   AC_ARG_ENABLE([cluster],  
     [AS_HELP_STRING([--disable-cluster],

Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/framing/Handler.h
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/framing/Handler.h?rev=571161&r1=571160&r2=571161&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/framing/Handler.h (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/framing/Handler.h Thu Aug 30 06:23:40 2007
@@ -47,7 +47,7 @@
      * linked list of handlers.
      */
     struct Chain : public Handler<T> {
-        Chain(Handler<T>* first) : Handler(first) {}
+        Chain(Handler<T>* first=0) : Handler(first) {}
         void operator=(Handler<T>* h) { next = h; }
         void handle(T t) { (*next)(t); }
         // TODO aconway 2007-08-29: chain modifier ops here.