Make LT_INIT recognizable by autoconf
The LT_INIT macro is wrapped in an m4_ifdef to handle older versions of libtool. However, the text scanning done by libtoolize cause a warning if this statement does not match a particular search expression. Writing the clause in this form makes the (false) warning go away.
This commit is contained in:
parent
b04753fee6
commit
d8766f322a
@ -20,8 +20,11 @@ AC_CONFIG_HEADERS([config.h])
|
|||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
AM_PROG_CC_C_O
|
AM_PROG_CC_C_O
|
||||||
|
|
||||||
|
dnl Initialize libtool; the funny indentation here is to
|
||||||
|
dnl satisfy libtoolize' check for the presence of this macro
|
||||||
m4_ifdef([LT_INIT],
|
m4_ifdef([LT_INIT],
|
||||||
[LT_INIT[]dnl
|
[
|
||||||
|
LT_INIT[]dnl
|
||||||
LT_LANG([C++])dnl
|
LT_LANG([C++])dnl
|
||||||
LT_LANG([Fortran 77])dnl
|
LT_LANG([Fortran 77])dnl
|
||||||
LT_LANG([Fortran])dnl
|
LT_LANG([Fortran])dnl
|
||||||
|
Loading…
Reference in New Issue
Block a user