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
This commit is contained in:
Lucas De Marchi 2012-10-31 20:40:29 +00:00
parent db489a2338
commit 8afe8dcff4
1 changed files with 1 additions and 5 deletions

View File

@ -46,11 +46,7 @@ AC_C_CONST
AC_FUNC_ALLOCA
AC_C___ATTRIBUTE__
define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])
define([AC_LIBTOOL_LANG_GCJ_CONFIG], [:])
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
LT_INIT([disable-static])
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##