From: Gonzalo A. <ga...@us...> - 2007-03-12 22:45:43
|
Update of /cvsroot/mod-c/mod_c In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv2641 Modified Files: bootstrap.sh Log Message: More FreeBSD friendly. Index: bootstrap.sh =================================================================== RCS file: /cvsroot/mod-c/mod_c/bootstrap.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** bootstrap.sh 25 Aug 2006 13:28:20 -0000 1.2 --- bootstrap.sh 12 Mar 2007 22:45:40 -0000 1.3 *************** *** 7,21 **** rm -rvf configure config.log config.h autom4te.cache aclocal.m4 rm -rvf Makefile.in stamp-h.in src/Makefile.in ! rm -rvf cfgaux/[a-z]* src/cfgaux/[a-z]* ! rm -rvf config.status config.guess mkdir cfgaux || true # Generate AM macros for autoconf ! aclocal # configure.in => configure echo autoconf ! autoconf --force # ads ltmain.sh --- 7,20 ---- rm -rvf configure config.log config.h autom4te.cache aclocal.m4 rm -rvf Makefile.in stamp-h.in src/Makefile.in ! rm -rvf cfgaux/[a-z]* src/cfgaux/[a-z]* config.status config.guess mkdir cfgaux || true # Generate AM macros for autoconf ! aclocal || aclocal19 # configure.in => configure echo autoconf ! autoconf --force || autoconf259 --force # ads ltmain.sh *************** *** 24,30 **** # Makefile.am => Makefile.in ! autoheader echo automake --add-missing --copy ! automake --add-missing --copy exit 0 --- 23,29 ---- # Makefile.am => Makefile.in ! autoheader || autoheader259 echo automake --add-missing --copy ! automake --add-missing --copy || automake19 --add-missing --copy exit 0 |