You are viewing a plain text version of this content. The canonical link for it is here.
Posted to savan-dev@ws.apache.org by da...@apache.org on 2007/09/20 13:23:38 UTC

svn commit: r577689 - in /webservices/savan/trunk/c: autogen.sh configure.ac

Author: damitha
Date: Thu Sep 20 04:23:38 2007
New Revision: 577689

URL: http://svn.apache.org/viewvc?rev=577689&view=rev
Log:
updating build files

Modified:
    webservices/savan/trunk/c/autogen.sh
    webservices/savan/trunk/c/configure.ac

Modified: webservices/savan/trunk/c/autogen.sh
URL: http://svn.apache.org/viewvc/webservices/savan/trunk/c/autogen.sh?rev=577689&r1=577688&r2=577689&view=diff
==============================================================================
--- webservices/savan/trunk/c/autogen.sh (original)
+++ webservices/savan/trunk/c/autogen.sh Thu Sep 20 04:23:38 2007
@@ -49,3 +49,7 @@
 fi
 
 echo 'done'
+cd samples
+echo "Running autogen.sh in Savan/C samples"
+./autogen.sh
+

Modified: webservices/savan/trunk/c/configure.ac
URL: http://svn.apache.org/viewvc/webservices/savan/trunk/c/configure.ac?rev=577689&r1=577688&r2=577689&view=diff
==============================================================================
--- webservices/savan/trunk/c/configure.ac (original)
+++ webservices/savan/trunk/c/configure.ac Thu Sep 20 04:23:38 2007
@@ -20,6 +20,10 @@
 dnl Checks for libraries.
 AC_CHECK_LIB(dl, dlopen)
 
+if test -d $srcdir/samples; then
+    AC_CONFIG_SUBDIRS(samples)
+fi
+
 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
 if test "$GCC" = "yes"; then
     CFLAGS="$CFLAGS -ansi -Wall -Werror -Wno-implicit-function-declaration"