You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2005/01/12 12:57:23 UTC

cvs commit: ws-axis/c/src/transport/axis3/HTTPSSLChannel Makefile.am HTTPSSLChannel.cpp

samisa      2005/01/12 03:57:23

  Modified:    c        configure.ac
               c/src/transport Makefile.am
               c/src/transport/axis3/HTTPChannel HTTPChannel.cpp
               c/src/transport/axis3/HTTPSSLChannel HTTPSSLChannel.cpp
  Added:       c/src/transport/axis3 Makefile.am
               c/src/transport/axis3/HTTPChannel Makefile.am
               c/src/transport/axis3/HTTPSSLChannel Makefile.am
  Log:
  Added axis3 transport to GNU make based build system.
  Also fixed some compilation problems on Linux.
  
  Revision  Changes    Path
  1.66      +3 -0      ws-axis/c/configure.ac
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/configure.ac,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- configure.ac	12 Jan 2005 05:50:23 -0000	1.65
  +++ configure.ac	12 Jan 2005 11:57:21 -0000	1.66
  @@ -250,6 +250,9 @@
       src/transport/axis2/Makefile \
       src/transport/axis2/ssl/Makefile \
       src/transport/axis2/ipv6/Makefile \
  +    src/transport/axis3/Makefile \
  +    src/transport/axis3/HTTPChannel/Makefile \
  +    src/transport/axis3/HTTPSSLChannel/Makefile \
       src/engine/Makefile \
       src/engine/server/Makefile \
       src/engine/client/Makefile  \
  
  
  
  1.9       +1 -1      ws-axis/c/src/transport/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/Makefile.am,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Makefile.am	18 Nov 2004 06:48:15 -0000	1.8
  +++ Makefile.am	12 Jan 2005 11:57:22 -0000	1.9
  @@ -1 +1 @@
  -SUBDIRS = axis2 
  +SUBDIRS = axis2 axis3 
  
  
  
  1.1                  ws-axis/c/src/transport/axis3/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libaxis3_transport.la
  SUBDIRS = HTTPChannel HTTPSSLChannel @SSLBUILD@
  AM_CPPFLAGS = $(CPPFLAGS)
  libaxis3_transport_la_SOURCES = ChannelFactory.cpp \
  				 HTTPTransport.cpp \
  				 HTTPTransportException.cpp \
  				 HTTPTransportInstantiator.cpp \
  				 URL.cpp
  libaxis3_transport_la_LIBADD = -lstdc++
  INCLUDES = -I../../../include
  
  
  
  
  1.5       +2 -0      ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannel.cpp
  
  Index: HTTPChannel.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannel.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HTTPChannel.cpp	11 Jan 2005 11:43:38 -0000	1.4
  +++ HTTPChannel.cpp	12 Jan 2005 11:57:22 -0000	1.5
  @@ -487,7 +487,9 @@
   
   void HTTPChannel::StopSockets()
   {
  +#ifdef WIN32
   	WSACleanup();
  +#endif // WIN32
   }
   
   /**
  
  
  
  1.1                  ws-axis/c/src/transport/axis3/HTTPChannel/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libaxis3_transport_channel.la
  SUBDIRS = 
  AM_CPPFLAGS = $(CPPFLAGS)
  libaxis3_transport_channel_la_SOURCES = HTTPChannel.cpp \
  				        HTTPChannelInstantiator.cpp
  libaxis3_transport_channel_la_LIBADD = -lstdc++
  INCLUDES = -I../../../../include
  
  
  
  
  1.5       +2 -0      ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.cpp
  
  Index: HTTPSSLChannel.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HTTPSSLChannel.cpp	11 Jan 2005 11:43:25 -0000	1.4
  +++ HTTPSSLChannel.cpp	12 Jan 2005 11:57:22 -0000	1.5
  @@ -441,7 +441,9 @@
   
   void HTTPSSLChannel::StopSockets()
   {
  +#ifdef WIN32
   	WSACleanup();
  +#endif // WIN32
   }
   
   /**
  
  
  
  1.1                  ws-axis/c/src/transport/axis3/HTTPSSLChannel/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  lib_LTLIBRARIES = libaxis3_transport_ssl_channel.la
  SUBDIRS = 
  AM_CPPFLAGS = $(CPPFLAGS)
  libaxis3_transport_ssl_channel_la_SOURCES = HTTPSSLChannel.cpp \
  				        HTTPSSLChannelInstantiator.cpp
  libaxis3_transport_ssl_channel_la_LIBADD = -lstdc++
  INCLUDES = -I../../../../include