Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 23047 invoked from network); 12 Sep 2003 09:27:56 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 12 Sep 2003 09:27:56 -0000 Received: (qmail 77741 invoked by uid 500); 12 Sep 2003 09:27:26 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 77630 invoked by uid 500); 12 Sep 2003 09:27:25 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 77618 invoked by uid 500); 12 Sep 2003 09:27:25 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 12 Sep 2003 09:27:50 -0000 Message-ID: <20030912092750.22997.qmail@minotaur.apache.org> From: damitha@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/c/src/engine Axis.cpp Makefile.am X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 \