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 2006/10/02 21:48:03 UTC

svn commit: r452182 - in /incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network: SocketFactory.cpp SocketInputStream.cpp SocketOutputStream.cpp

Author: tabish
Date: Mon Oct  2 12:48:03 2006
New Revision: 452182

URL: http://svn.apache.org/viewvc?view=rev&rev=452182
Log:
Adding stdio.h to support some older gcc compilers

Modified:
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketFactory.cpp
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketInputStream.cpp
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketOutputStream.cpp

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketFactory.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketFactory.cpp?view=diff&rev=452182&r1=452181&r2=452182
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketFactory.cpp (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketFactory.cpp Mon Oct  2 12:48:03 2006
@@ -18,6 +18,7 @@
 #include <activemq/network/BufferedSocket.h>
 #include <activemq/network/TcpSocket.h>
 #include <activemq/util/Properties.h>
+#include <stdio.h>
 
 using namespace std;
 using namespace activemq;

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketInputStream.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketInputStream.cpp?view=diff&rev=452182&r1=452181&r2=452182
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketInputStream.cpp (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketInputStream.cpp Mon Oct  2 12:48:03 2006
@@ -28,6 +28,7 @@
 #include <activemq/io/IOException.h>
 #include <stdlib.h>
 #include <string>
+#include <stdio.h>
 
 using namespace activemq;
 using namespace activemq::network;

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketOutputStream.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketOutputStream.cpp?view=diff&rev=452182&r1=452181&r2=452182
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketOutputStream.cpp (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/network/SocketOutputStream.cpp Mon Oct  2 12:48:03 2006
@@ -26,6 +26,7 @@
 
 #include <errno.h>
 #include <stdlib.h>
+#include <stdio.h>
 
 #if defined( __APPLE__ )
 #define SOCKET_NOSIGNAL SO_NOSIGPIPE