e: Use LT_INIT instead of AC_PROG_LIBTOOL
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Wed, 31 Oct 2012 20:40:29 +0000 (20:40 +0000)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Wed, 31 Oct 2012 20:40:29 +0000 (20:40 +0000)
commit8afe8dcff499b11238a2f25d45f9925380f7f42f
treec248cbc697da461bb8de459a1238686da625dc59
parentdb489a2338d5c5b78264e2da3c2364dcd6e8d86a
e: Use LT_INIT instead of AC_PROG_LIBTOOL

AC_PROG_LIBTOOL is deprecated and in favor of LT_INIT:

http://www.gnu.org/software/libtool/manual/html_node/LT_005fINIT.html
    Add support for the --enable-shared, --disable-shared, --enable-static,
    --disable-static, --with-pic, and --without-pic configure flags.1
    AC_PROG_LIBTOOL and AM_PROG_LIBTOOL are deprecated names for older
    versions of this macro; autoupdate will upgrade your configure.ac
    files.

With LT_INIT it's possible to shortcut some calls, too. Particularly
disabling support for languages is not needed (only the ones enabled
through  AC_PROG_C* ar enabled) and AC_DISABLE_STATIC is given as an
option.

SVN revision: 78719
configure.ac