You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sc...@apache.org on 2005/10/26 00:50:01 UTC

svn commit: r328496 - in /httpd/mod_mbox/trunk: autogen.sh configure.ac

Author: sctemme
Date: Tue Oct 25 15:49:58 2005
New Revision: 328496

URL: http://svn.apache.org/viewcvs?rev=328496&view=rev
Log:
Re-order some of the autotools setup calls to satisfy dependencies. Most
notably, automake depends on autoheader having run. 

Added AC_PROG_LIBTOOL macro to configure.ac which makes libtoolize shut up 
but doesn't seem to do anything to the actual build. 

Tested on FreeBSD 4.11-STABLE and Tiger.

Modified:
    httpd/mod_mbox/trunk/autogen.sh
    httpd/mod_mbox/trunk/configure.ac

Modified: httpd/mod_mbox/trunk/autogen.sh
URL: http://svn.apache.org/viewcvs/httpd/mod_mbox/trunk/autogen.sh?rev=328496&r1=328495&r2=328496&view=diff
==============================================================================
--- httpd/mod_mbox/trunk/autogen.sh (original)
+++ httpd/mod_mbox/trunk/autogen.sh Tue Oct 25 15:49:58 2005
@@ -51,9 +51,10 @@
 done
 
 
-$LIBTOOLIZE --force --copy
 $ACLOCAL -I m4
-$AUTOMAKE --add-missing --copy --foreign
 $AUTOHEADER
+$LIBTOOLIZE --force --copy
+$AUTOMAKE --add-missing --copy --foreign
 $AUTOCONF
+
 rm -rf autom4te.cache

Modified: httpd/mod_mbox/trunk/configure.ac
URL: http://svn.apache.org/viewcvs/httpd/mod_mbox/trunk/configure.ac?rev=328496&r1=328495&r2=328496&view=diff
==============================================================================
--- httpd/mod_mbox/trunk/configure.ac (original)
+++ httpd/mod_mbox/trunk/configure.ac Tue Oct 25 15:49:58 2005
@@ -4,6 +4,7 @@
 AC_PREREQ(2.53)
 AC_CONFIG_SRCDIR([module-2.0/mod_mbox.c])
 AC_CONFIG_AUX_DIR(config)
+AC_PROG_LIBTOOL
 AM_MAINTAINER_MODE
 AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)