You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/09/06 07:53:24 UTC

svn commit: r440622 - in /webservices/axis2/trunk/c: axiom/build.sh axiom/configure.ac build.sh configure.ac util/configure.ac woden/Makefile.am woden/configure.ac xml_schema/configure.ac

Author: samisa
Date: Tue Sep  5 22:53:23 2006
New Revision: 440622

URL: http://svn.apache.org/viewvc?view=rev&rev=440622
Log:
Fixed the build system so that it would not assume CuTest

Modified:
    webservices/axis2/trunk/c/axiom/build.sh
    webservices/axis2/trunk/c/axiom/configure.ac
    webservices/axis2/trunk/c/build.sh
    webservices/axis2/trunk/c/configure.ac
    webservices/axis2/trunk/c/util/configure.ac
    webservices/axis2/trunk/c/woden/Makefile.am
    webservices/axis2/trunk/c/woden/configure.ac
    webservices/axis2/trunk/c/xml_schema/configure.ac

Modified: webservices/axis2/trunk/c/axiom/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/build.sh?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/axiom/build.sh (original)
+++ webservices/axis2/trunk/c/axiom/build.sh Tue Sep  5 22:53:23 2006
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 ./autogen.sh
-./configure --prefix=${AXIS2C_HOME} --enable-static=no --with-axis2_util=${AXIS2C_HOME}/include --enable-tests=yes
+./configure --prefix=${AXIS2C_HOME} --enable-static=no --with-axis2_util=${AXIS2C_HOME}/include --enable-tests=no
 make 
 make install
 

Modified: webservices/axis2/trunk/c/axiom/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/configure.ac?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/axiom/configure.ac (original)
+++ webservices/axis2/trunk/c/axiom/configure.ac Tue Sep  5 22:53:23 2006
@@ -104,13 +104,13 @@
 AC_MSG_CHECKING(whether to build tests)
 AC_ARG_ENABLE(tests, [  --enable-tests    build tests. default=no],
 [ case "${enableval}" in
-  no)
-    AC_MSG_RESULT(no)
-    TESTDIR=""
-    ;;
-  *)
+  yes)
     AC_MSG_RESULT(yes)
     TESTDIR="test"
+    ;;
+  *)
+    AC_MSG_RESULT(no)
+    TESTDIR=""
 
     ;;
   esac ],

Modified: webservices/axis2/trunk/c/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/build.sh?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/build.sh (original)
+++ webservices/axis2/trunk/c/build.sh Tue Sep  5 22:53:23 2006
@@ -4,7 +4,7 @@
 AXIS2C=`pwd`
 export AXIS2C_HOME AXIS2C
 
-./configure --prefix=${AXIS2C_HOME} --enable-tests=yes --enable-trace=yes  --enable-diclient=no --enable-static=no --enable-openssl=no --with-axis2_util=${AXIS2C}/util/include --with-axiom=${AXIS2C}/axiom/include 
+./configure --prefix=${AXIS2C_HOME} --enable-tests=no --enable-trace=yes  --enable-diclient=no --enable-static=no --enable-openssl=no --with-axis2_util=${AXIS2C}/util/include --with-axiom=${AXIS2C}/axiom/include 
 
 make 
 make install

Modified: webservices/axis2/trunk/c/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/configure.ac?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/configure.ac (original)
+++ webservices/axis2/trunk/c/configure.ac Tue Sep  5 22:53:23 2006
@@ -95,13 +95,13 @@
 AC_MSG_CHECKING(whether to build tests)
 AC_ARG_ENABLE(tests, [  --enable-tests    build tests. default=no],
 [ case "${enableval}" in
-  no)
-    AC_MSG_RESULT(no)
-    TESTDIR=""
-    ;;
-  *)
+  yes)
     AC_MSG_RESULT(yes)
     TESTDIR="test"
+    ;;
+  *)
+    AC_MSG_RESULT(no)
+    TESTDIR=""
 
     ;;
   esac ],

Modified: webservices/axis2/trunk/c/util/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/configure.ac?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/util/configure.ac (original)
+++ webservices/axis2/trunk/c/util/configure.ac Tue Sep  5 22:53:23 2006
@@ -64,18 +64,18 @@
 AC_MSG_CHECKING(whether to build tests)
 AC_ARG_ENABLE(tests, [  --enable-tests    build tests. default=yes],
 [ case "${enableval}" in
-  no)
-    AC_MSG_RESULT(no)
-    TESTDIR=""
-    ;;
-  *)
+  yes)
     AC_MSG_RESULT(yes)
     TESTDIR="test"
+    ;;
+  *)
+    AC_MSG_RESULT(no)
+    TESTDIR=""
 
     ;;
   esac ],
-  AC_MSG_RESULT(yes)
-  TESTDIR="test"
+  AC_MSG_RESULT(no)
+  TESTDIR=""
 )
 
 

Modified: webservices/axis2/trunk/c/woden/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/Makefile.am?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/woden/Makefile.am (original)
+++ webservices/axis2/trunk/c/woden/Makefile.am Tue Sep  5 22:53:23 2006
@@ -1,4 +1,4 @@
-SUBDIRS = src test samples
+SUBDIRS = src samples
 include_HEADERS=$(top_builddir)/include/*.h
 EXTRA_DIST = build.sh autogen.sh LICENSE
 

Modified: webservices/axis2/trunk/c/woden/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/configure.ac?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/woden/configure.ac (original)
+++ webservices/axis2/trunk/c/woden/configure.ac Tue Sep  5 22:53:23 2006
@@ -22,7 +22,7 @@
 
 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
 if test "$GCC" = "yes"; then
-    CFLAGS="$CFLAGS -ansi -Wall -Wno-implicit-function-declaration -Werror"
+    CFLAGS="$CFLAGS -ansi -Wall -Wno-implicit-function-declaration"
 fi
 LDFLAGS="-lpthread"
 

Modified: webservices/axis2/trunk/c/xml_schema/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/configure.ac?view=diff&rev=440622&r1=440621&r2=440622
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/configure.ac (original)
+++ webservices/axis2/trunk/c/xml_schema/configure.ac Tue Sep  5 22:53:23 2006
@@ -87,18 +87,18 @@
 AC_MSG_CHECKING(whether to build tests)
 AC_ARG_ENABLE(tests, [  --enable-tests    build tests. default=yes],
 [ case "${enableval}" in
-  no)
-	AC_MSG_RESULT(no)
-        TESTDIR=""
+  yes)
+	AC_MSG_RESULT(yes)
+        TESTDIR="test"
 	;;
 	*)
-	AC_MSG_RESULT(yes)
-	TESTDIR="test"
+	AC_MSG_RESULT(no)
+	TESTDIR=""
 
 	;;
 	esac ],
-	AC_MSG_RESULT(yes)
-	TESTDIR="test"
+	AC_MSG_RESULT(no)
+	TESTDIR=""
 )
 
 UTILINC=$axis2_utilinc



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org