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 2005/10/25 04:15:03 UTC

svn commit: r328237 - in /webservices/axis2/trunk/c: configure configure.ac modules/core/Makefile.am modules/core/Makefile.in modules/xml/Makefile.am modules/xml/Makefile.in

Author: damitha
Date: Mon Oct 24 19:14:44 2005
New Revision: 328237

URL: http://svn.apache.org/viewcvs?rev=328237&view=rev
Log:
Made test building by default yes. Also made some build order changes

Modified:
    webservices/axis2/trunk/c/configure
    webservices/axis2/trunk/c/configure.ac
    webservices/axis2/trunk/c/modules/core/Makefile.am
    webservices/axis2/trunk/c/modules/core/Makefile.in
    webservices/axis2/trunk/c/modules/xml/Makefile.am
    webservices/axis2/trunk/c/modules/xml/Makefile.in

Modified: webservices/axis2/trunk/c/configure
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/configure?rev=328237&r1=328236&r2=328237&view=diff
==============================================================================
--- webservices/axis2/trunk/c/configure (original)
+++ webservices/axis2/trunk/c/configure Mon Oct 24 19:14:44 2005
@@ -1035,7 +1035,7 @@
   --disable-dependency-tracking  speeds up one-time build
   --enable-dependency-tracking   do not reject slow dependency extractors
   --disable-libtool-lock  avoid locking (might break parallel builds)
-  --enable-tests    build tests. default=no
+  --enable-tests    build tests. default=yes
   --enable-guththila    build guththila. default=yes
 
 Optional Packages:
@@ -22852,12 +22852,9 @@
 
 #AC_CHECK_FUNCS([memmove])
 
-#want_xml=no
+#Following two lines are temporary and will be removed
 want_xml=yes
 want_core=yes
-#want_test=no
-want_test=yes
-want_guththila=yes
 
 echo "$as_me:$LINENO: checking whether to build tests" >&5
 echo $ECHO_N "checking whether to build tests... $ECHO_C" >&6
@@ -22880,7 +22877,7 @@
 else
   echo "$as_me:$LINENO: result: no" >&5
 echo "${ECHO_T}no" >&6
-  want_test=no
+  want_test=yes
 
 fi;
 
@@ -22909,6 +22906,7 @@
 
 fi;
 
+#Following two lines are temporary and will be removed
 
 
 if test "$want_xml" = yes; then

Modified: webservices/axis2/trunk/c/configure.ac
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/configure.ac?rev=328237&r1=328236&r2=328237&view=diff
==============================================================================
--- webservices/axis2/trunk/c/configure.ac (original)
+++ webservices/axis2/trunk/c/configure.ac Mon Oct 24 19:14:44 2005
@@ -42,15 +42,12 @@
 AC_FUNC_REALLOC
 #AC_CHECK_FUNCS([memmove])
 
-#want_xml=no
+#Following two lines are temporary and will be removed
 want_xml=yes
 want_core=yes
-#want_test=no
-want_test=yes
-want_guththila=yes
 
 AC_MSG_CHECKING(whether to build tests)
-AC_ARG_ENABLE(tests, [  --enable-tests    build tests. default=no],
+AC_ARG_ENABLE(tests, [  --enable-tests    build tests. default=yes],
 [ case "${enableval}" in
   no)
     AC_MSG_RESULT(no)
@@ -63,7 +60,7 @@
     ;;
   esac ],
   AC_MSG_RESULT(no)
-  want_test=no
+  want_test=yes
 )
 
 AC_MSG_CHECKING(whether to build guththila)
@@ -83,6 +80,7 @@
   want_guththila=yes
 )
 
+#Following two lines are temporary and will be removed
 AM_CONDITIONAL([COND_XML], [test "$want_xml" = yes])
 AM_CONDITIONAL([COND_CORE], [test "$want_core" = yes])
 AM_CONDITIONAL([COND_TEST], [test "$want_test" = yes])

Modified: webservices/axis2/trunk/c/modules/core/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/Makefile.am?rev=328237&r1=328236&r2=328237&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/Makefile.am Mon Oct 24 19:14:44 2005
@@ -1 +1 @@
-SUBDIRS = context description engine
+SUBDIRS = description context engine

Modified: webservices/axis2/trunk/c/modules/core/Makefile.in
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/Makefile.in?rev=328237&r1=328236&r2=328237&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/Makefile.in (original)
+++ webservices/axis2/trunk/c/modules/core/Makefile.in Mon Oct 24 19:14:44 2005
@@ -169,7 +169,7 @@
 target_cpu = @target_cpu@
 target_os = @target_os@
 target_vendor = @target_vendor@
-SUBDIRS = context description engine
+SUBDIRS = description context engine
 all: all-recursive
 
 .SUFFIXES:

Modified: webservices/axis2/trunk/c/modules/xml/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/Makefile.am?rev=328237&r1=328236&r2=328237&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/xml/Makefile.am Mon Oct 24 19:14:44 2005
@@ -2,4 +2,4 @@
   MAYBE_GUTHTHILA = guththila
 endif
 
-SUBDIRS = om soap $(MAYBE_GUTHTHILA)
+SUBDIRS = $(MAYBE_GUTHTHILA) om soap

Modified: webservices/axis2/trunk/c/modules/xml/Makefile.in
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/Makefile.in?rev=328237&r1=328236&r2=328237&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/Makefile.in (original)
+++ webservices/axis2/trunk/c/modules/xml/Makefile.in Mon Oct 24 19:14:44 2005
@@ -59,7 +59,7 @@
 	uninstall-recursive
 ETAGS = etags
 CTAGS = ctags
-DIST_SUBDIRS = om soap guththila
+DIST_SUBDIRS = guththila om soap
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMDEP_FALSE = @AMDEP_FALSE@
@@ -170,7 +170,7 @@
 target_os = @target_os@
 target_vendor = @target_vendor@
 @COND_GUTHTHILA_TRUE@MAYBE_GUTHTHILA = guththila
-SUBDIRS = om soap $(MAYBE_GUTHTHILA)
+SUBDIRS = $(MAYBE_GUTHTHILA) om soap
 all: all-recursive
 
 .SUFFIXES: