Author: wyoung
Date: Thu Oct 27 19:00:01 2011
New Revision: 2703

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2703&view=rev
Log:
- Reverted from autoreconf to separate calls to the various autotools
  from bootstrap script.  EL5 and older have autoreconf with a known
  limitation whereby it won't pass -I flags on to aclocal, so it can't
  find bakefile.m4.
- Switched from LT_INIT in configure.ac to older AC_PROG_LIBTOOL to
  allow new libtool support to work with libtool pre 2.2.

Modified:
    trunk/bootstrap
    trunk/configure.ac

Modified: trunk/bootstrap
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/bootstrap?rev=2703&r1=2702&r2=2703&view=diff
==============================================================================
--- trunk/bootstrap (original)
+++ trunk/bootstrap Thu Oct 27 19:00:01 2011
@@ -80,7 +80,10 @@
        rm -f config.cache
        mv autoconf_inc.m4 config > /dev/null 2>&1      # don't care if it fails
        set -x &&
-               autoreconf --install -I config -I $BAKEFILE_M4 &&
+               aclocal -I config -I $BAKEFILE_M4 &&
+               libtoolize &&
+               autoheader &&
+               autoconf &&
                ./configure $MAINT_FLAGS $* &&
                make lib/querydef.h lib/ssqls.h &&
                set +x &&

Modified: trunk/configure.ac
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/configure.ac?rev=2703&r1=2702&r2=2703&view=diff
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Thu Oct 27 19:00:01 2011
@@ -21,7 +21,7 @@
 
 
 # Enable libtool to decide shared library compile flags (ie -fPIC)
-LT_INIT([disable-static])
+AC_PROG_LIBTOOL
 AC_SUBST([LIBTOOL_DEPS])
 
 


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to