mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-11 15:00:08 +08:00
* m4/ltoptions.m4: Change all references of LT_LIBTOOL_INIT
to LT_INIT.
This commit is contained in:
parent
81ac758669
commit
87501d96cd
@ -1,3 +1,8 @@
|
||||
2004-11-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* m4/ltoptions.m4: Change all references of LT_LIBTOOL_INIT
|
||||
to LT_INIT.
|
||||
|
||||
2004-11-05 Peter Ekberg <spam.protected>
|
||||
|
||||
* ltmain.m4sh (cwrappersource): clean up other warning on MinGW.
|
||||
|
40
m4/ltoptions.m4
vendored
40
m4/ltoptions.m4
vendored
@ -86,9 +86,9 @@ _LT_UNLESS_OPTIONS([fast-install disable-fast-install],
|
||||
])# _LT_SET_OPTIONS
|
||||
|
||||
|
||||
## ----------------------------------------- ##
|
||||
## Macros to handle LT_INIT_LIBTOOL options. ##
|
||||
## ----------------------------------------- ##
|
||||
## --------------------------------- ##
|
||||
## Macros to handle LT_INIT options. ##
|
||||
## --------------------------------- ##
|
||||
|
||||
m4_define([_LT_MANGLE_DEFUN],
|
||||
[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1]), [[^A-Z0-9_]], [_])])
|
||||
@ -109,7 +109,7 @@ AU_DEFUN([AC_LIBTOOL_DLOPEN],
|
||||
[_LT_SET_OPTION([dlopen])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||
put the `dlopen' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
put the `dlopen' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
|
||||
@ -141,14 +141,14 @@ AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
|
||||
[_LT_SET_OPTION([win32-dll])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||
put the `win32-dll' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
put the `win32-dll' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
|
||||
# _LT_ENABLE_SHARED([DEFAULT])
|
||||
# ----------------------------
|
||||
# implement the --enable-shared flag, and supports the `shared' and
|
||||
# `disable-shared' LT_INIT_LIBTOOL options.
|
||||
# `disable-shared' LT_INIT options.
|
||||
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
||||
m4_define([_LT_ENABLE_SHARED],
|
||||
[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
||||
@ -186,35 +186,35 @@ AU_DEFUN([AC_ENABLE_SHARED],
|
||||
[_LT_SET_OPTION([shared])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||
put the `shared' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
put the `shared' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
AU_DEFUN([AM_ENABLE_SHARED],
|
||||
[_LT_SET_OPTION([shared])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||
put the `shared' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
put the `shared' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
AU_DEFUN([AC_DISABLE_SHARED],
|
||||
[_LT_SET_OPTION([disable-shared])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||
the `disable-shared' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
the `disable-shared' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
AU_DEFUN([AM_DISABLE_SHARED],
|
||||
[_LT_SET_OPTION([disable-shared])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||
the `disable-shared' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
the `disable-shared' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
|
||||
# _LT_ENABLE_STATIC([DEFAULT])
|
||||
# ----------------------------
|
||||
# implement the --enable-static flag, and support the `static' and
|
||||
# `disable-static' LT_INIT_LIBTOOL options.
|
||||
# `disable-static' LT_INIT options.
|
||||
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
||||
m4_define([_LT_ENABLE_STATIC],
|
||||
[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
||||
@ -252,35 +252,35 @@ AU_DEFUN([AC_ENABLE_STATIC],
|
||||
[_LT_SET_OPTION([static])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||
put the `static' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
put the `static' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
AU_DEFUN([AM_ENABLE_STATIC],
|
||||
[_LT_SET_OPTION([static])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||
put the `static' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
put the `static' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
AU_DEFUN([AC_DISABLE_STATIC],
|
||||
[_LT_SET_OPTION([disable-static])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||
the `disable-static' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
the `disable-static' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
AU_DEFUN([AM_DISABLE_STATIC],
|
||||
[_LT_SET_OPTION([disable-static])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||
the `disable-static' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
the `disable-static' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
|
||||
# _LT_ENABLE_FAST_INSTALL([DEFAULT])
|
||||
# ----------------------------------
|
||||
# implement the --enable-fast-install flag, and support the `fast-install'
|
||||
# and `disable-fast-install' LT_INIT_LIBTOOL options.
|
||||
# and `disable-fast-install' LT_INIT options.
|
||||
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
||||
m4_define([_LT_ENABLE_FAST_INSTALL],
|
||||
[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
||||
@ -318,21 +318,21 @@ AU_DEFUN([AC_ENABLE_FAST_INSTALL],
|
||||
[_LT_SET_OPTION([fast-install])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||
the `fast-install' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
the `fast-install' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
AU_DEFUN([AC_DISABLE_FAST_INSTALL],
|
||||
[_LT_SET_OPTION([disable-fast-install])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||
the `disable-fast-install' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
the `disable-fast-install' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
||||
|
||||
# _LT_WITH_PIC([MODE])
|
||||
# --------------------
|
||||
# implement the --with-pic flag, and support the `pic-only' and `no-pic'
|
||||
# LT_INIT_LIBTOOL options.
|
||||
# LT_INIT options.
|
||||
# MODE is either `yes' or `no'. If omitted, it defaults to `both'.
|
||||
m4_define([_LT_WITH_PIC],
|
||||
[AC_ARG_WITH([pic],
|
||||
@ -354,5 +354,5 @@ AU_DEFUN([AC_LIBTOOL_PIC_MODE],
|
||||
[_LT_SET_OPTION([pic-only])
|
||||
AC_DIAGNOSE([obsolete],
|
||||
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||
put the `pic-only' option into LT_LIBTOOL_INIT's first parameter.])
|
||||
put the `pic-only' option into LT_INIT's first parameter.])
|
||||
])
|
||||
|
Loading…
Reference in New Issue
Block a user