mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-18 14:16:00 +08:00
* libtoolize.in: Remove --ltdl-tar. It doesn't work with the
current implementation, and seems more or less pointless. * doc/libtool.texi (Invoking libtoolize): Updated. * NEWS: Updated.
This commit is contained in:
parent
157859aa6f
commit
6bfa1584cd
@ -1,5 +1,10 @@
|
||||
2004-03-05 Gary V. Vaughan <gary@gnu.org>
|
||||
|
||||
* libtoolize.in: Remove --ltdl-tar. It doesn't work with the
|
||||
current implementation, and seems more or less pointless.
|
||||
* doc/libtool.texi (Invoking libtoolize): Updated.
|
||||
* NEWS: Updated.
|
||||
|
||||
* doc/libtool.texi: This manual has not been maintained properly
|
||||
for a number of years. Much of what it said was outdated, or
|
||||
plain wrong with reference to modern autotools. This change
|
||||
|
1
NEWS
1
NEWS
@ -15,6 +15,7 @@ New in 1.5b: 2004-??-??; CVS version 1.5a, Libtool team:
|
||||
and libtool m4 macro versions.
|
||||
* Like automake, libtoolize no longer installs config.guess and config.sub by
|
||||
default. Use new --install option to get the old behaviour.
|
||||
* libtoolize no longer supports the --ltdl-tar option.
|
||||
* libtool script is now created by config.status. Instead of interrogating
|
||||
`./libtool' from configure.ac after calling AC_PROG_LIBTOOL, use the
|
||||
variable names directly.
|
||||
|
@ -2036,9 +2036,6 @@ Display a help message and exit.
|
||||
@item --ltdl
|
||||
Install libltdl in a subdirectory of your package.
|
||||
|
||||
@item --ltdl-tar
|
||||
Add the file libltdl.tar.gz to your package.
|
||||
|
||||
@item --quiet
|
||||
@itemx -q
|
||||
Work silently. @samp{libtoolize --quiet} is used by @sc{gnu} Automake
|
||||
|
@ -38,7 +38,6 @@
|
||||
# --help display this message and exit
|
||||
# -i, --install copy missing auxiliary files
|
||||
# --ltdl install libltdl in a subdirectory
|
||||
# --ltdl-tar install the libltdl tarball
|
||||
# -q, --quiet work silently
|
||||
# -v, --verbose verbosely report processing
|
||||
# --version print version information and exit
|
||||
@ -77,7 +76,6 @@ opt_force=false
|
||||
opt_install=false
|
||||
opt_link=:
|
||||
opt_ltdl=false
|
||||
opt_ltdl_tar=false
|
||||
opt_quiet=false
|
||||
opt_verbose=false
|
||||
|
||||
@ -213,7 +211,6 @@ func_version ()
|
||||
--force|-f) opt_force=: ;;
|
||||
--install|-i) opt_install=: ;;
|
||||
--ltdl) opt_ltdl=: ;;
|
||||
--ltdl-tar) opt_ltdl_tar=: ;;
|
||||
--quiet|--automake|-q) # --automake is for 1.5 compatibility
|
||||
opt_quiet=: ;;
|
||||
--verbose|-v) opt_verbose=: ;;
|
||||
@ -614,21 +611,6 @@ func_config_update ()
|
||||
# user specified `--with-ltdl'.
|
||||
$opt_ltdl && eval func_copy_all_files "$pkgdatadir/libltdl" libltdl
|
||||
|
||||
# Copy all the files from installed libltdl to a tarball in this project,
|
||||
# if the user specified `--with-ltdl-tar'.
|
||||
$opt_ltdl_tar && {
|
||||
if test -f libltdl.tar.gz; then
|
||||
if $opt_force; then
|
||||
test -d libltdl && ${RM}r libltdl
|
||||
func_copy_all_files "$pkgdatadir/libltdl" libltdl
|
||||
tar -chof - libltdl | gzip --best > libltdl.tar.gz
|
||||
${RM}r libltdl
|
||||
else
|
||||
func_error "\`libltdl.tar.gz' exists: use \`--force' to overwrite"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
# Copy all the installed utility files to the auxiliary directory if
|
||||
# `--install' was passed, or else copy just ltmain.sh.
|
||||
$opt_quiet || if test "$auxdir" != .; then
|
||||
|
Loading…
Reference in New Issue
Block a user