You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/04/30 21:51:49 UTC

svn commit: r533839 - in /activemq/activemq-cpp/tags/activemq-cpp-2.0.1: RELEASE_NOTES.txt configure.ac

Author: tabish
Date: Mon Apr 30 12:51:49 2007
New Revision: 533839

URL: http://svn.apache.org/viewvc?view=rev&rev=533839
Log:
Merging in Fixes for the 2.0.1 release

Modified:
    activemq/activemq-cpp/tags/activemq-cpp-2.0.1/RELEASE_NOTES.txt
    activemq/activemq-cpp/tags/activemq-cpp-2.0.1/configure.ac

Modified: activemq/activemq-cpp/tags/activemq-cpp-2.0.1/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/tags/activemq-cpp-2.0.1/RELEASE_NOTES.txt?view=diff&rev=533839&r1=533838&r2=533839
==============================================================================
--- activemq/activemq-cpp/tags/activemq-cpp-2.0.1/RELEASE_NOTES.txt (original)
+++ activemq/activemq-cpp/tags/activemq-cpp-2.0.1/RELEASE_NOTES.txt Mon Apr 30 12:51:49 2007
@@ -1,4 +1,29 @@
 =========================================================================
+==  Release Notes for ActiveMQ CPP 2.0.1                               ==
+=========================================================================
+
+== Overview ==
+
+This version is a bug fix release for issues that were found in the 2.0 release
+
+NOTE: Compatable with ActiveMQ Broker version >= 4.0.2
+
+== Issues Resolved ==
+
+Bug
+
+    * [AMQCPP-105] - Openwire ActiveMQMessage sets Persistant flag incorrectly
+    * [AMQCPP-107] - SocketInputStream::read() doesn't check for EINTR error
+    * [AMQCPP-109] - Exception when acknowledging null messages, originating from the receipt of an ObjectMessage
+    * [AMQCPP-112] - Openwire Experiation Integration tests fail when fixed to actually use Openwire
+
+Improvement
+
+    * [AMQCPP-101] - Add the Ability to set the TcpNoDelay flag of a TCP Socket
+    * [AMQCPP-102] - Create a Tag for CMS
+
+
+=========================================================================
 ==  Release Notes for ActiveMQ CPP 2.0                                 ==
 =========================================================================
 

Modified: activemq/activemq-cpp/tags/activemq-cpp-2.0.1/configure.ac
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/tags/activemq-cpp-2.0.1/configure.ac?view=diff&rev=533839&r1=533838&r2=533839
==============================================================================
--- activemq/activemq-cpp/tags/activemq-cpp-2.0.1/configure.ac (original)
+++ activemq/activemq-cpp/tags/activemq-cpp-2.0.1/configure.ac Mon Apr 30 12:51:49 2007
@@ -5,9 +5,9 @@
 # The ASF licenses this file to You under the Apache License, Version 2.0
 # (the "License"); you may not use this file except in compliance with
 # the License.  You may obtain a copy of the License at
-# 
+#
 # http://www.apache.org/licenses/LICENSE-2.0
-# 
+#
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -26,7 +26,7 @@
 ## Define the Version variables
 ## -----------------------------------------------
 ACTIVEMQ_LIBRARY_NAME=activemq-cpp
-ACTIVEMQ_VERSION=2.0
+ACTIVEMQ_VERSION=2.0.1
 ACTIVEMQ_LIBRARY_VERSION=0:0:0
 ACTIVEMQ_RELEASE=0.0
 ACTIVEMQ_API_VERSION=${ACTIVEMQ_VERSION}
@@ -83,7 +83,7 @@
 
 AC_CHECK_FUNCS([ioctl select gettimeofday time ftime])
 
-AM_PATH_CPPUNIT(1.10.2, cppunit=yes, cppunit=no; AC_MSG_RESULT([no. Unit and Integration tests disabled])) 
+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)
 
 CXXFLAGS="$CXXFLAGS -W -Wall -fstrict-aliasing -Wstrict-aliasing=2 -Wno-long-long"
@@ -93,16 +93,16 @@
 case "${host_os}" in
 
   *darwin* ) ## Mac OS X configuration
-    CXXFLAGS="-ansi -pedantic $CXXFLAGS" 
+    CXXFLAGS="-ansi -pedantic $CXXFLAGS"
     LIBS="$LIBS"
     ;;
 
   *cygwin* ) ## Cygwin configuration
     # LIBS="-lwinmm -lm";
-    CXXFLAGS="$CXXFLAGS -Wno-uninitialized" 
+    CXXFLAGS="$CXXFLAGS -Wno-uninitialized"
     LIBS="$LIBS -lm -lpthread -luuid -lrpcrt4"
     ;;
-    
+
   *solaris* ) ## Solaris configuration
     AC_CHECK_LIB(pthread, pthread_create,[have_pthread="yes"],
                 AC_MSG_ERROR([libpthread not found!]))
@@ -110,13 +110,13 @@
     CXXFLAGS="-ansi -pedantic  $CXXFLAGS"
     LIBS="$LIBS -lm -lpthread -luuid -lsocket -lrt"
     ;;
-    
+
   *) ## Unix configuration
 
     AC_CHECK_LIB(pthread, pthread_create,[have_pthread="yes"],
                 AC_MSG_ERROR([libpthread not found!]))
 
-    CXXFLAGS="-ansi -pedantic  $CXXFLAGS" 
+    CXXFLAGS="-ansi -pedantic  $CXXFLAGS"
     LIBS="$LIBS -lm -lpthread -luuid"
 esac
 
@@ -139,7 +139,7 @@
       (void) a.ai_flags;
     } while(0)
   ],
-  [ 
+  [
     AC_MSG_RESULT(yes)
     AC_DEFINE(HAVE_STRUCT_ADDRINFO,, [define if you have struct addrinfo])
   ],