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
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.
# --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
opt_install=false
opt_link=:
opt_ltdl=false
-opt_ltdl_tar=false
opt_quiet=false
opt_verbose=false
--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=: ;;
# 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