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 da...@apache.org on 2003/09/12 11:27:50 UTC

cvs commit: xml-axis/c/src/engine Axis.cpp Makefile.am

damitha     2003/09/12 02:27:50

  Modified:    c/src/engine Axis.cpp Makefile.am
  Log:
  log:In engine/Makefile.am added cflags to add gcc options of
  -ansi and -pedantic. In Axis.cpp
  In Axis.cpp
  #ifdef AXIS_APACHE1_3
  #define WSDDFILEPATH "/usr/local/apache/Axis/conf/server.wsdd"
  
  Revision  Changes    Path
  1.19      +1 -1      xml-axis/c/src/engine/Axis.cpp
  
  Index: Axis.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/engine/Axis.cpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- Axis.cpp	11 Sep 2003 14:58:57 -0000	1.18
  +++ Axis.cpp	12 Sep 2003 09:27:50 -0000	1.19
  @@ -101,7 +101,7 @@
   #endif
   #else //For linux
   #ifdef AXIS_APACHE1_3
  -#define WSDDFILEPATH "./Axis/conf/server.wsdd"
  +#define WSDDFILEPATH "/usr/local/apache/Axis/conf/server.wsdd"
   #else
   #define WSDDFILEPATH "/usr/local/apache/Axis/conf/server.wsdd"
   #endif
  
  
  
  1.5       +1 -1      xml-axis/c/src/engine/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/engine/Makefile.am,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile.am	11 Sep 2003 14:38:32 -0000	1.4
  +++ Makefile.am	12 Sep 2003 09:27:50 -0000	1.5
  @@ -1,5 +1,5 @@
   noinst_LTLIBRARIES = libengine.la
  -
  +AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
   libengine_la_SOURCES = Axis.cpp \
                   AxisEngine.cpp \
                   HandlerChain.cpp \