You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/10/01 00:08:00 UTC

svn commit: r451682 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac

Author: chirino
Date: Sat Sep 30 15:07:59 2006
New Revision: 451682

URL: http://svn.apache.org/viewvc?view=rev&rev=451682
Log:
Tweaking auto conf

Modified:
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac?view=diff&rev=451682&r1=451681&r2=451682
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac Sat Sep 30 15:07:59 2006
@@ -63,19 +63,19 @@
 AC_CHECK_HEADERS([objbase.h])
 AC_CHECK_HEADERS([repcdce.h])
 
-AM_PATH_CPPUNIT(1.10.2, cppunit=yes, cppunit=no) ## AC_MSG_ERROR([cppunit required for build.])) 
+AM_PATH_CPPUNIT(1.10.2, cppunit=yes, cppunit=no; AC_MSG_RESULT([no. Unit and Integration tests disabled])) 
 AM_CONDITIONAL(BUILD_CPPUNIT_TESTS, test x$cppunit = xyes)
 
 case "${host_os}" in
 
   darwin* ) ## Mac OS X configuration
-    LIBS="";
+    LIBS=""
     ;;
 
   cygwin* ) ## Cygwin configuration
     # LIBS="-lwinmm -lm";
     CFLAGS="$CFLAGS -pthread" 
-    LIBS="$LIBS -lm -lpthread";
+    LIBS="$LIBS -lm -lpthread"
     ;;
 
   *) ## Unix configuration
@@ -84,7 +84,7 @@
                 AC_MSG_ERROR([libpthread not found!]))
 
     CFLAGS="$CFLAGS -pthread" 
-    LIBS="$LIBS -lm -lpthread";
+    LIBS="$LIBS -lm -lpthread"
 esac
 
 DX_HTML_FEATURE(ON)