mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-24 14:24:59 +08:00
* tests/am-subdir.at tests/testsuite.at (AT_BOOTSTRAP,
AT_LIBTOOLIZE, AT_CHECK_LIBTOOLIZE) Rename to .. (LT_AT_BOOTSTRAP, LT_AT_LIBTOOLIZE, LT_AT_CHECK_LIBTOOLIZE) and make use of new names.
This commit is contained in:
parent
e49e871547
commit
6d51635bd8
@ -1,3 +1,10 @@
|
||||
2005-01-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* tests/am-subdir.at tests/testsuite.at (AT_BOOTSTRAP,
|
||||
AT_LIBTOOLIZE, AT_CHECK_LIBTOOLIZE) Rename to ..
|
||||
(LT_AT_BOOTSTRAP, LT_AT_LIBTOOLIZE, LT_AT_CHECK_LIBTOOLIZE)
|
||||
and make use of new names.
|
||||
|
||||
2004-12-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* config/getopt.m4sh (func_version, func_usage, func_help):
|
||||
|
@ -72,7 +72,7 @@ AT_DATA(expout,
|
||||
** This is libsub **
|
||||
]])
|
||||
|
||||
AT_BOOTSTRAP
|
||||
LT_AT_BOOTSTRAP
|
||||
"${MAKE-make}"
|
||||
AT_CHECK([subdir/subdemo], 0, expout)
|
||||
|
||||
@ -155,7 +155,7 @@ AT_DATA(expout,
|
||||
** This is libsub::sub **
|
||||
]])
|
||||
|
||||
AT_BOOTSTRAP
|
||||
LT_AT_BOOTSTRAP
|
||||
"${MAKE-make}"
|
||||
AT_CHECK([subdir/subdemo], 0, expout)
|
||||
|
||||
|
@ -23,26 +23,26 @@ m4_divert_push([PREPARE_TESTS])dnl
|
||||
export LIBTOOLIZE
|
||||
m4_divert_pop([PREPARE_TESTS])dnl
|
||||
|
||||
# AT_LIBTOOLIZE([ARGS])
|
||||
# ---------------------
|
||||
m4_define([AT_LIBTOOLIZE],
|
||||
# LT_AT_LIBTOOLIZE([ARGS])
|
||||
# ------------------------
|
||||
m4_define([LT_AT_LIBTOOLIZE],
|
||||
["$LIBTOOLIZE" -I "$abs_top_srcdir" -I "$abs_top_srcdir/config" $1
|
||||
])
|
||||
|
||||
|
||||
# AT_CHECK_LIBTOOLIZE(ARGS, [EXIT-STATUS = 0], [STDOUT = `'], [STDERR = `'])
|
||||
# --------------------------------------------------------------------------
|
||||
m4_define([AT_CHECK_LIBTOOLIZE],
|
||||
[AT_CHECK([AT_LIBTOOLIZE([$1])],
|
||||
# LT_AT_CHECK_LIBTOOLIZE(ARGS, [EXIT-STATUS = 0], [STDOUT = `'], [STDERR = `'])
|
||||
# -----------------------------------------------------------------------------
|
||||
m4_define([LT_AT_CHECK_LIBTOOLIZE],
|
||||
[AT_CHECK([LT_AT_LIBTOOLIZE([$1])],
|
||||
[$2], [$3], [$4])
|
||||
])
|
||||
|
||||
|
||||
# AT_BOOTSTRAP
|
||||
# ------------
|
||||
m4_define([AT_BOOTSTRAP],
|
||||
# LT_AT_BOOTSTRAP
|
||||
# ---------------
|
||||
m4_define([LT_AT_BOOTSTRAP],
|
||||
[
|
||||
test -f ./ltmain.sh || AT_LIBTOOLIZE([--copy])
|
||||
test -f ./ltmain.sh || LT_AT_LIBTOOLIZE([--copy])
|
||||
test -f ./configure || autoreconf --force --verbose --install
|
||||
test -f ./configure || exit 1
|
||||
./configure
|
||||
|
Loading…
Reference in New Issue
Block a user