]> git.ipfire.org Git - thirdparty/libtool.git/log
thirdparty/libtool.git
14 years agoDisable GCC LTO for verbose library extraction.
Ralf Wildenhues [Sun, 29 Aug 2010 15:30:19 +0000 (17:30 +0200)] 
Disable GCC LTO for verbose library extraction.

* libltdl/m4/libtool.m4 (_LT_SYS_HIDDEN_LIBDEPS): Temporarily
append -fno-lto or -fno-whopr to CFLAGS if CC or CFLAGS (which
are substituted with the per-language variables here) contain
-flto or match -fwhopr*, respectively.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoSave and restore CFLAGS properly inside libtool.m4 macros.
Ralf Wildenhues [Sun, 29 Aug 2010 15:28:29 +0000 (17:28 +0200)] 
Save and restore CFLAGS properly inside libtool.m4 macros.

* libltdl/m4/libtool.m4 (_LT_CMD_GLOBAL_SYMBOLS): Use different
temporary variables for saved and restored values of $LIBS,
$CFLAGS, to avoid overlap with the *_CONFIG macros.
(_LT_LANG_CXX_CONFIG, _LT_LANG_F77_CONFIG, _LT_LANG_FC_CONFIG)
(_LT_LANG_GCJ_CONFIG, _LT_LANG_RC_CONFIG): Also save and restore
$CFLAGS, and override it with per-language flags, so that in
case output_verbose_link_cmd uses $CFLAGS, the right flags are
used.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoWork around yet another shell quoting portability issue.
Ralf Wildenhues [Sun, 29 Aug 2010 14:54:33 +0000 (16:54 +0200)] 
Work around yet another shell quoting portability issue.

* configure.ac: Avoid nonportable quoted alternate variable
value in unquoted here document, so Solaris 10 sh and Tru64
ksh do not print spurious extra quotes.

14 years agoMerge branch 'parallel-tests'
Ralf Wildenhues [Sun, 29 Aug 2010 07:12:28 +0000 (09:12 +0200)] 
Merge branch 'parallel-tests'

* parallel-tests:
  Silence order-only configure test for AIX make.

14 years agoSilence order-only configure test for AIX make. parallel-tests
Ralf Wildenhues [Sun, 29 Aug 2010 07:00:53 +0000 (09:00 +0200)] 
Silence order-only configure test for AIX make.

* configure.ac: Also drop standard output, for AIX 5.1 make.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoMerge branch 'sysroot'
Charles Wilson [Sun, 29 Aug 2010 00:16:02 +0000 (20:16 -0400)] 
Merge branch 'sysroot'

* sysroot:
  Minor sysroot fixups.

14 years agoMinor sysroot fixups. sysroot
Charles Wilson [Sat, 28 Aug 2010 22:27:15 +0000 (18:27 -0400)] 
Minor sysroot fixups.

* libltdl/m4/libtool.m4 (_LT_WITH_SYSROOT): Fix typo.
* tests/sysroot.at: Search also for crt0.o to accommodate cygwin.

Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
14 years agoMerge remote branch 'origin/master'
Charles Wilson [Sat, 28 Aug 2010 21:41:32 +0000 (17:41 -0400)] 
Merge remote branch 'origin/master'

14 years agoFix symlist variable path to use _WIN32 instead of __WINDOWS__.
Ralf Wildenhues [Sat, 28 Aug 2010 15:30:01 +0000 (17:30 +0200)] 
Fix symlist variable path to use _WIN32 instead of __WINDOWS__.

* libltdl/config/ltmain.m4sh, libltdl/libltdl/lt_system.h,
libltdl/m4/libtool.m4, tests/demo/foo.h, tests/pdemo/foo.h:
Change __WINDOWS__ to _WIN32.
Report by Charles Wilson.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoAdd $pic_flag to archive_cmds and archive_expsym_cmds.
Ralf Wildenhues [Sun, 4 Apr 2010 08:57:04 +0000 (10:57 +0200)] 
Add $pic_flag to archive_cmds and archive_expsym_cmds.

* libltdl/m4/libtool.m4 (_LT_LINKER_SHLIBS)
<archive_cmds, archive_expsym_cmds>
[GNU ld, netbsd]: Add $pic_flag if ELF.
[GNU ld, solaris]: Likewise.
[GNU ld, default case]: Likewise.
[!GNU ld, freebsd, dragonfly]: Add $pic_flag.
[!GNU ld, GCC, hpux9]: Add $pic_flag.
[!GNU ld, GCC, hpux10]: Replace -fPIC with $pic_flag
[!GNU ld, GCC, hpux11, !hppa*64]: Replace -fPIC with $pic_flag.
[!GNU ld, GCC, irix5, irix6, nonstopux]: Add $pic_flag.
[!GNU ld, GCC, osf4, osf5]: Likewise.
[!GNU ld, GCC, solaris]: Likewise.
(_LT_LANG_CXX_CONFIG) <archive_cmds, archive_expsym_cmds>
[hpux9]: Add $pic_flag if $GXX.
[hpux10, hpux11, !hppa*64]: Replace -fPIC with $pic_flag.
[irix5, irix6]: Add $pic_flag if $GXX.
[osf4, osf5]: Likewise.
[solaris]: Add $pic_flag if $GXX and not GCC 2.7.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoUniform const'ness of symlist variable lt_preloaded_symbols.
Ralf Wildenhues [Sun, 4 Apr 2010 08:56:47 +0000 (10:56 +0200)] 
Uniform const'ness of symlist variable lt_preloaded_symbols.

On some systems, lt_preloaded_symbols may not be declared
const due to relocation issues.  C99 requires qualification to
match for compatible declarations, so ensure we declare
const'ness in the same way everywhere; link-time optimization
may otherwise rightfully complain about inconsistencies.
Since ltdl.h may not depend upon config.h, rely on system
defines for choosing const'ness.

* NEWS: Update.
* doc/libtool.texi (Dlpreopening): Document this issue.
* libltdl/config/ltmain.m4sh (func_generate_dlsyms):
[__WINDOWS__, __CYGWIN__, _WIN32_WCE]: Define LT_DLSYM_CONST
according to system defines.  Remove old shell cruft.  Use
LT_DLSYM_CONST for lt_${my_prefix}_LTX_preloaded_symbols.
* libltdl/libltdl/lt_system.h (LT_DLSYM_CONST): Likewise,
define LT_DLSYM_CONST according to system defines.
* tests/demo/foo.h (LT_DLSYM_CONST): Likewise.
* tests/pdemo/foo.h (LT_DLSYM_CONST): Likewise.
* tests/demo/dlmain.c (lt_dlsymlist): Use LT_DLSYM_CONST.
* tests/pdemo/longer_file_name_dlmain.c (lt_dlsymlist):
Likewise.
* libltdl/m4/libtool.m4 (_LT_CMD_GLOBAL_SYMBOLS): Likewise
for configure test code.
* libltdl/ltdl.c (preloaded_symbols): Use LT_DLSYM_CONST.
* libltdl/ltdl.h (LTDL_SET_PRELOADED_SYMBOLS): Likewise.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoEnsure cwrapper magic string is not optimized away.
Dave Korn [Sat, 28 Aug 2010 12:43:02 +0000 (14:43 +0200)] 
Ensure cwrapper magic string is not optimized away.

* libltdl/config/ltmain.m4sh (func_emit_cwrapperexe_src):
Declare MAGIC_EXE as volatile.
Report by Charles Wilson.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoFix quoting in non-XSI func_xform, for IRIX sh.
Ralf Wildenhues [Sat, 28 Aug 2010 12:17:20 +0000 (14:17 +0200)] 
Fix quoting in non-XSI func_xform, for IRIX sh.

* libltdl/config/ltmain.m4sh (func_xform): Remove spurious extra
M4 quotes.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoFix response file test for unreliable exit status of IRIX ar.
Ralf Wildenhues [Sat, 28 Aug 2010 10:22:36 +0000 (12:22 +0200)] 
Fix response file test for unreliable exit status of IRIX ar.

* libltdl/m4/libtool.m4 (_LT_PROG_AR): IRIX ar will not fail
over a command-line argument specifying a nonexistent file (such
as `@FILE'), so ensure failure with a reponse file containing
a nonexistent file.  Also, use lt_* variable prefix for
temporary variables.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoFix AC_LANG_PROGRAM warnings from git Autoconf.
Ralf Wildenhues [Sat, 28 Aug 2010 09:34:24 +0000 (11:34 +0200)] 
Fix AC_LANG_PROGRAM warnings from git Autoconf.

* libltdl/m4/libtool.m4 (_LT_SYS_MODULE_PATH_AIX): Fix
underquoted AC_LANG_PROGRAM call.
(LT_PROG_AR): Use AC_LANG_PROGRAM.
(_LT_LINKER_SHLIBS) [irix, GCC]: Use the right source for the
given language.
* NEWS: Update.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoMerge branch 'sysroot'
Ralf Wildenhues [Sat, 28 Aug 2010 08:39:40 +0000 (10:39 +0200)] 
Merge branch 'sysroot'

* sysroot:
  Add ChangeLog entries for the sysroot branch.
  fix AIX testsuite regression
  fix --mode=finish
  improve code for sysroot --mode=finish
  add libtool --mode=finish mode for sysroot
  reorganize parsing of --mode=finish arguments
  fix sysroot handling for deplibs of preopened libtool libs
  fix sysroot tests to pass on Fedora 13
  initial version of the NEWS entry
  add sysroot test
  emit sysrooted paths when installing .la files
  process postdeps to include sysrooted paths
  handle sysrooted paths when reading dependencies to la files
  teach libtool -L= and -R=
  add --with-sysroot
  handle sysroot flags

14 years agoMerge branch 'parallel-tests'
Ralf Wildenhues [Sat, 28 Aug 2010 08:24:33 +0000 (10:24 +0200)] 
Merge branch 'parallel-tests'

* parallel-tests:
  Fix NEWS entry for bootstrapping requirements.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoFix NEWS entry for bootstrapping requirements.
Ralf Wildenhues [Fri, 27 Aug 2010 17:34:57 +0000 (19:34 +0200)] 
Fix NEWS entry for bootstrapping requirements.

* NEWS: Only bootstrapping needs new Automake and Autoconf.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoAdd ChangeLog entries for the sysroot branch.
Ralf Wildenhues [Sat, 28 Aug 2010 08:16:50 +0000 (10:16 +0200)] 
Add ChangeLog entries for the sysroot branch.

14 years ago[cygwin|mingw|cross-compile]: Path conversion support.
Charles Wilson [Mon, 19 Jul 2010 01:07:01 +0000 (21:07 -0400)] 
[cygwin|mingw|cross-compile]: Path conversion support.

* configure.ac: Ensure to_host_file_cmd is available to Makefile.
* TODO: Document QoI issue with file name conversion functions.
* libltdl/m4/libtool.m4 (_LT_PATH_CONVERSION_FUNCTIONS): New function
sets libtool variable $to_host_file_cmd, and employs cache.
(_LT_SETUP): Require it.
* tests/testsuite.at: Ensure to_host_file_cmd is passed as a
variable setting on the configure line for (new testsuite) tests.
* Makefile.am (TESTS_ENVIRONMENT): Ensure to_host_file_cmd is
included so that it is passed to (old testsuite) tests.
* libltdl/config/general.m4sh: Define $lt_sed_naive_backslashify here.
* libltdl/config/ltmain.m4sh ($to_host_file_cmd, $to_host_path_cmd):
New variables.
(func_cygpath): New function.
(func_init_to_host_path_cmd): New function.
(func_to_host_path): Renamed to...
(func_to_host_file): Refactored to... (now uses $to_host_file_cmd).
(func_convert_core_file_wine_to_w32): Here. New function.
(func_convert_core_msys_to_w32): Here. New function.
(func_convert_file_check): Here. New function.
(func_convert_file_noop): Here. New function.
(func_convert_file_msys_to_w32): Here. New function.
(func_convert_file_cygwin_to_w32): Here. New function.
(func_convert_file_nix_to_w32): Here. New function.
(func_convert_file_msys_to_cygwin): New function.
(func_convert_file_nix_to_cygwin): New function.
(func_to_host_pathlist): Renamed to...
(func_to_host_path): Refactored to... (now uses $to_host_path_cmd
and func_init_to_host_path_cmd).
(func_convert_path_check): Here. New function.
(func_convert_path_front_back_pathsep): Here. New function.
(func_convert_core_path_wine_to_w32): Here. New function.
(func_convert_path_noop): Here. New function.
(func_convert_path_msys_to_w32): Here. New function.
(func_convert_path_cygwin_to_w32): Here. New function.
(func_convert_path_nix_to_w32): Here. New function.
(func_convert_path_msys_to_cygwin): New function.
(func_convert_path_nix_to_cygwin): New function.

Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
14 years agoMerge branch 'parallel-tests'
Ralf Wildenhues [Fri, 27 Aug 2010 05:31:49 +0000 (07:31 +0200)] 
Merge branch 'parallel-tests'

* parallel-tests:
  check-interactive and check-noninteractive for both testsuites.
  Adjust docs for renaming and for parallel-tests.
  Update VERBOSE handling for parallel-tests driver.
  Enable parallel-tests test driver for the old testsuite.
  New alias scripts for old tests run more than once.
  Require Automake 1.11.1 for Libtool, enable color-tests.

14 years agoFix syntax for cygwin-cross
Charles Wilson [Mon, 23 Aug 2010 05:18:18 +0000 (01:18 -0400)] 
Fix syntax for cygwin-cross

libltdl/m4/argz.m4: Add quotes around variable, which
may contain the multiword value 'guessing no'.

Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
14 years agoconfigure: use Autobuild AB_INIT if available.
Ralf Wildenhues [Sun, 22 Aug 2010 18:33:49 +0000 (20:33 +0200)] 
configure: use Autobuild AB_INIT if available.

* configure.ac: Call AB_INIT if it is defined, with
$autobuild_mode as argument, to be set at configure time.
Set AB_VERSION to the Libtool version string.
* HACKING: Update.
* libltdl/m4/.gitignore: Ignore autobuild.m4.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoFix getopt tests to skip with Autoconf < 2.61.
Ralf Wildenhues [Sat, 21 Aug 2010 04:56:37 +0000 (06:56 +0200)] 
Fix getopt tests to skip with Autoconf < 2.61.

* tests/getopt-m4sh.at (_LT_AT_GETOPT_M4SH_SETUP): Skip the test
if 'autom4te --language=m4sh' exits 63 because version 2.61 is
required.  Allows the testsuite to complete successfully with
Autoconf 2.59 and Automake 1.9.6.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agocheck-interactive and check-noninteractive for both testsuites.
Ralf Wildenhues [Sun, 22 Aug 2010 04:32:39 +0000 (06:32 +0200)] 
check-interactive and check-noninteractive for both testsuites.

* Makefile.am (COMMON_TESTS, TESTS): Split into ...
(NONINTERACTIVE_TESTS, INTERACTIVE_TESTS): ... these new
variables.
(check-interactive-new): Rename from check-interactive.
(check-noninteractive-new): Rename from check-noninteractive.
(check-interactive-old, check-noninteractive-old): New targets.
(check-interactive, check-noninteractive): Depend on the
respective targets for the old and the new test suites.
* doc/libtool.texi (Test descriptions): Simplify description
about check-interactive and check-noninteractive.  Add index
entries.
* NEWS: Update.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoAdjust docs for renaming and for parallel-tests.
Ralf Wildenhues [Sun, 22 Aug 2010 04:31:27 +0000 (06:31 +0200)] 
Adjust docs for renaming and for parallel-tests.

* README: Update example TESTS setting.
* README.alpha: Likewise.
* NEWS: Update.
* doc/libtool.texi (Test descriptions): Update for test renaming,
adjust descriptions accordingly.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoTidy and fix clean and distclean rules for old testsuite.
Ralf Wildenhues [Sun, 22 Aug 2010 04:14:06 +0000 (06:14 +0200)] 
Tidy and fix clean and distclean rules for old testsuite.

* Makefile.am (clean-local-legacy): Use $(CONF_SUBDIRS) instead
of hard-coding the list of test directories.  Use
$(AM_MAKEFLAGS).
(fake-distclean-legacy): New phony rule, to create fake Makefile
files if needed so that the automake-generated
distclean-recursive rule can work properly.
(distclean_recursive): New helper variable.
(distclean-recursive): Depend on fake-distclean-legacy.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoMerge branch 'master' into sysroot
Paolo Bonzini [Sun, 22 Aug 2010 07:54:55 +0000 (09:54 +0200)] 
Merge branch 'master' into sysroot

14 years agoFix sed_make_literal_regex.
Paolo Bonzini [Sun, 15 Aug 2010 17:04:08 +0000 (19:04 +0200)] 
Fix sed_make_literal_regex.

* libltdl/config/general.m4sh (sed_make_literal_regex): Fix
definition.

14 years agofix AIX testsuite regression
Ralf Wildenhues [Sun, 22 Aug 2010 07:42:51 +0000 (09:42 +0200)] 
fix AIX testsuite regression

* libltdl/config/ltmain.m4sh (func_resolve_sysroot): Partly
revert v2.2.10-83-gc45a288: Do not absolutize path here, only do
sysroot replacement.
(func_mode_link): Adjust.

14 years agoMerge remote branch 'origin/master' into sysroot
Paolo Bonzini [Sun, 22 Aug 2010 07:29:24 +0000 (09:29 +0200)] 
Merge remote branch 'origin/master' into sysroot

* libltdl/config/ltmain.m4sh (func_mode_finish): Use sed_make_literal_regex.

14 years agofix --mode=finish
Charles Wilson [Sun, 22 Aug 2010 07:39:21 +0000 (09:39 +0200)] 
fix --mode=finish

* libltdl/config/ltmain.m4sh (func_mode_finish): Invert then/else
blocks of the "if $opt_dry_run" conditional.

14 years agoFactor the sed command used to make a regex from a literal.
Paolo Bonzini [Sun, 15 Aug 2010 17:04:08 +0000 (19:04 +0200)] 
Factor the sed command used to make a regex from a literal.

* libltdl/config/general.m4sh (sed_make_literal_regex): New.
* libltdl/config/ltmain.m4sh (func_generate_dlsyms,
func_cygming_dll_for_implib_fallback_core): Use it.  Suggested
by Ralf Wildenhues.

14 years agoUpdate VERBOSE handling for parallel-tests driver.
Ralf Wildenhues [Sun, 22 Aug 2010 04:30:25 +0000 (06:30 +0200)] 
Update VERBOSE handling for parallel-tests driver.

* tests/defs.m4sh: Default to verbose output, drop now-unneeded
handling of 'VERBOSE=no'.
* README: Update example usage.
* README.alpha: Likewise.
* doc/libtool.texi (Test descriptions, When tests fail): Remove
unneeded VERBOSE recommendations.  Point to per-test log files
and test-suite.log summary file.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoEnable parallel-tests test driver for the old testsuite.
Ralf Wildenhues [Sun, 22 Aug 2010 04:29:41 +0000 (06:29 +0200)] 
Enable parallel-tests test driver for the old testsuite.

* configure.ac: New configure test to find out whether `make'
supports order-only prerequisites; set @ORDER@ accordingly.
(AM_INIT_AUTOMAKE): Enable parallel-tests option.
* tests/defs.m4sh (prefix): Derive install prefix for tests
from the test name, to avoid clashes.
* Makefile.am (CXX_TESTS, F77_TESTS, FC_TESTS, COMMON_TESTS):
Reformat.  Adjust for renamed tests.  Add dependencies between
the respective log files of the tests, to ensure proper ordering.
Use order-only dependencies if possible, between test groups that
use the same directory.
(clean-local-legacy): Remove `_inst-*' directories as well.
Prompted by suggestion from Bob Friesenhahn.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoNew alias scripts for old tests run more than once.
Ralf Wildenhues [Sun, 22 Aug 2010 04:28:30 +0000 (06:28 +0200)] 
New alias scripts for old tests run more than once.

* tests/cdemo-shared-exec.test, tests/cdemo-shared-make.test,
tests/cdemo-static-exec.test, tests/cdemo-static-make.test,
tests/cdemo-undef-exec.test, tests/cdemo-undef-make.test,
tests/demo-nofast-exec.test, tests/demo-nofast-inst.test,
tests/demo-nofast-make.test, tests/demo-nofast-unst.test,
tests/demo-nopic-exec.test, tests/demo-nopic-make.test,
tests/demo-pic-exec.test, tests/demo-pic-make.test,
tests/demo-shared-exec.test, tests/demo-shared-inst.test,
tests/demo-shared-make.test, tests/demo-shared-unst.test,
tests/demo-static-exec.test, tests/demo-static-inst.test,
tests/demo-static-make.test, tests/demo-static-unst.test,
tests/depdemo-nofast-exec.test, tests/depdemo-nofast-inst.test,
tests/depdemo-nofast-make.test, tests/depdemo-nofast-unst.test,
tests/depdemo-shared-exec.test, tests/depdemo-shared-inst.test,
tests/depdemo-shared-make.test, tests/depdemo-shared-unst.test,
tests/depdemo-static-exec.test, tests/depdemo-static-inst.test,
tests/depdemo-static-make.test, tests/depdemo-static-unst.test,
tests/f77demo-shared-exec.test, tests/f77demo-shared-make.test,
tests/f77demo-static-exec.test, tests/f77demo-static-make.test,
tests/fcdemo-shared-exec.test, tests/fcdemo-shared-make.test,
tests/fcdemo-static-exec.test, tests/fcdemo-static-make.test,
tests/mdemo-shared-exec.test, tests/mdemo-shared-inst.test,
tests/mdemo-shared-make.test, tests/mdemo-shared-unst.test,
tests/mdemo-static-exec.test, tests/mdemo-static-inst.test,
tests/mdemo-static-make.test, tests/mdemo-static-unst.test,
tests/tagdemo-shared-exec.test, tests/tagdemo-shared-make.test,
tests/tagdemo-static-exec.test, tests/tagdemo-static-make.test,
tests/tagdemo-undef-exec.test, tests/tagdemo-undef-make.test:
New files.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoRequire Automake 1.11.1 for Libtool, enable color-tests.
Ralf Wildenhues [Sun, 22 Aug 2010 04:26:50 +0000 (06:26 +0200)] 
Require Automake 1.11.1 for Libtool, enable color-tests.

* configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1.  Enable
color-tests.
(LTDL_SUBDIR_LIBOBJS): Remove now-obsolete conditional and
feature test for Autoconf 2.59 and Automake 1.9.x workaround.
* Makefile.am: Simplify accordingly.
* bootstrap: Remove obsolete WORKING_LIBOBJ_SUPPORT workarounds
for Autoconf 2.59 and Automake 1.9.6.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoAvoid issues with AIX resident shared libraries in old testsuite.
Rainer Tammer [Sat, 21 Aug 2010 08:02:29 +0000 (10:02 +0200)] 
Avoid issues with AIX resident shared libraries in old testsuite.

* tests/defs.m4sh [aix]: Remove file mode permission for others,
so shared libraries are not kept in memory after execution.
Fixes failures of repeated mdemo-inst.test with on AIX 5.3.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoSkip part of versioning test on AIX.
Ralf Wildenhues [Fri, 6 Aug 2010 22:23:22 +0000 (00:23 +0200)] 
Skip part of versioning test on AIX.

* tests/versioning.at (versioning): The AIX linker always
records the unversioned library name, even with runtimelinking,
so skip the execution test for the incompatibly upgraded
library.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoRemove dead code from versioning test.
Ralf Wildenhues [Fri, 6 Aug 2010 21:45:23 +0000 (23:45 +0200)] 
Remove dead code from versioning test.

* tests/versioning.at (versioning): No need to build unused
prog3.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoDon't hide the table of contents in the manual.
Ralf Wildenhues [Fri, 20 Aug 2010 05:02:46 +0000 (07:02 +0200)] 
Don't hide the table of contents in the manual.

* doc/libtool.texi: Move the table of contents to the beginning.
Prompted by patch from Bruno Haible against Automake.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoRemove superfluous dependency in Makefile.am.
Ralf Wildenhues [Fri, 20 Aug 2010 05:06:58 +0000 (07:06 +0200)] 
Remove superfluous dependency in Makefile.am.

* Makefile.am (tests/demo-conf.test): Remove dependency on
libtool, this test is a primary source and not generated.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 years agoBump copyright years in manual.
Ralf Wildenhues [Fri, 20 Aug 2010 05:01:20 +0000 (07:01 +0200)] 
Bump copyright years in manual.

* doc/libtool.texi: Bump copyright years.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoimprove code for sysroot --mode=finish
Paolo Bonzini [Sun, 15 Aug 2010 16:54:02 +0000 (18:54 +0200)] 
improve code for sysroot --mode=finish

* libltdl/config/ltmain.m4sh (func_mode_finish): Change sysroot_regex
and sysroot_cmd delimiter from pipe to slash.  Wrap the entire for
loop with "if $opt_dry_run...fi" and print an explanatory message
for the --dry-run case.

15 years agoadd libtool --mode=finish mode for sysroot
Paolo Bonzini [Wed, 11 Aug 2010 19:35:54 +0000 (15:35 -0400)] 
add libtool --mode=finish mode for sysroot

* doc/libtool.texi (Finish mode): Document behavior when *.la files
are passed.
* libltdl/config/ltmain.m4sh (func_mode_finish): Eliminate sysroot
or `=' signs representing it from files in $libs.
* tests/sysroot.at (SYSROOT_TESTS): Test for presence of sysroot
references before running libtool --mode=finish, and for absence
afterwards.

15 years agoreorganize parsing of --mode=finish arguments
Paolo Bonzini [Wed, 11 Aug 2010 19:10:50 +0000 (15:10 -0400)] 
reorganize parsing of --mode=finish arguments

* libltdl/config/ltmain.m4sh (func_mode_finish): Split arguments for
directories and *.la files.

15 years agofix sysroot handling for deplibs of preopened libtool libs
Paolo Bonzini [Thu, 12 Aug 2010 16:06:07 +0000 (12:06 -0400)] 
fix sysroot handling for deplibs of preopened libtool libs

* libltdl/config/ltmain.m4sh: Pass $dependency_libs of preopened libtool
through func_resolve_sysroot.

15 years agofix sysroot tests to pass on Fedora 13
Paolo Bonzini [Fri, 13 Aug 2010 01:04:06 +0000 (21:04 -0400)] 
fix sysroot tests to pass on Fedora 13

* tests/sysroot.at: Link $prefix/include into the sysroot as well, as
required by newer GCC.

15 years agoAllow the use of a listing file if the archiver supports it.
Peter Rosin [Fri, 13 Aug 2010 11:11:54 +0000 (13:11 +0200)] 
Allow the use of a listing file if the archiver supports it.

* libltdl/m4/libtool.m4 (_LT_CMD_OLD_ARCHIVE): Move detection
of a suitable archiver...
(_LT_PROG_AR): ...to here. New macro, also detect if the
archiver supports a listing file with the new variable
archiver_list_spec.
* libltdl/config/ltmain.m4sh: If the archiver supports a listing
file, use it when max_cmd_len is exceeded.  This is needed for
tool chains such as MSVC which do not support piece by piece
linking (-r -o).
* doc/libtool.texi (libtool script contents): Update with
archiver_list_spec description.

Signed-off-by: Peter Rosin <peda@lysator.liu.se>
15 years agoinitial version of the NEWS entry
Paolo Bonzini [Wed, 28 Jul 2010 22:36:21 +0000 (00:36 +0200)] 
initial version of the NEWS entry

* NEWS: Document sysroot support.

15 years agoadd sysroot test
Paolo Bonzini [Wed, 28 Jul 2010 21:56:28 +0000 (23:56 +0200)] 
add sysroot test

* Makefile.am (TESTSUITE_AT): Add tests/sysroot.at.
* tests/sysroot.at: New.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
15 years agoemit sysrooted paths when installing .la files
Paolo Bonzini [Wed, 28 Jul 2010 22:02:59 +0000 (00:02 +0200)] 
emit sysrooted paths when installing .la files

* libltdl/config/ltmain.m4sh (func_replace_sysroot): New.
(func_mode_link): Prepend paths in $libdir with the sysroot.  Further,
replace the sysroot with = (using func_replace_sysroot) whenever
such a path is written in a .la file.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
15 years agoprocess postdeps to include sysrooted paths
Paolo Bonzini [Wed, 28 Jul 2010 22:02:15 +0000 (00:02 +0200)] 
process postdeps to include sysrooted paths

* libltdl/m4/libtool.m4 (_LT_FUNC_STRIPNAME_CNF): New (from Charles Wilson).
(_LT_SYS_HIDDEN_LIBDEPS): Require it.  Use func_stripname_cnf to convert
sysroot (-L= and -R=) usage in postdeps.  Adjust the code because -L, -R
and -l flags will now always be separated from the rest of the argument.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
15 years agohandle sysrooted paths when reading dependencies to la files
Paolo Bonzini [Wed, 28 Jul 2010 22:00:12 +0000 (00:00 +0200)] 
handle sysrooted paths when reading dependencies to la files

* libltdl/config/ltmain.m4sh (func_mode_execute, func_mode_install,
func_mode_link): Whenever a .la file occurs in another .la file,
expand the sysroot path in it.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
15 years agoteach libtool -L= and -R=
Paolo Bonzini [Wed, 28 Jul 2010 21:59:30 +0000 (23:59 +0200)] 
teach libtool -L= and -R=

* libltdl/config/ltmain.m4sh (func_resolve_sysroot): New.
(func_mode_link): Always pass result of stripping -L and -R to
func_resolve_sysroot before using it.  Remove absolute path expansion
when func_resolve_sysroot subsumes it.  Expand sysroot in -rpath.
When processing dependent libraries also resolve sysroot paths there.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
15 years agoadd --with-sysroot
Paolo Bonzini [Wed, 28 Jul 2010 21:55:47 +0000 (23:55 +0200)] 
add --with-sysroot

* libltdl/m4/libtool.m4 (_LT_HOST_NONCANONICAL, _LT_WITH_SYSROOT): New.
(LT_SETUP): Require _LT_WITH_SYSROOT.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
15 years agohandle sysroot flags
Paolo Bonzini [Wed, 28 Jul 2010 21:53:19 +0000 (23:53 +0200)] 
handle sysroot flags

* libltdl/config/ltmain.m4sh (func_mode_link): Recognize --sysroot
option.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
15 years agoMake testsuite compatible with Autoconf 2.62 again.
Gary V. Vaughan [Tue, 10 Aug 2010 09:38:03 +0000 (16:38 +0700)] 
Make testsuite compatible with Autoconf 2.62 again.

* tests/getopt-m4sh.at (AT_CHECK): Autotest 2.62 chokes on unquoted
'#' in AT_CHECK, so replace all uses with '@%:@' quadrigraph.
Suggested by Eric Blake <eblake@redhat.com>
Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>

15 years agoFix more problematic code from "Add func_append_quoted and do..."
Ralf Wildenhues [Mon, 9 Aug 2010 21:16:12 +0000 (23:16 +0200)] 
Fix more problematic code from "Add func_append_quoted and do..."

* libltdl/config/ltmain.m4sh (func_mode_link): Revert back
func_append instances that as assignments relied on the shell
not performing word splitting on the right hand side of the
assignment.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoFix another typo on "Add func_append_quoted and do..."
Ralf Wildenhues [Mon, 9 Aug 2010 20:50:45 +0000 (22:50 +0200)] 
Fix another typo on "Add func_append_quoted and do..."

* libltdl/config/ltmain.m4sh (func_mode_link): Fix regression in
computation of finalize_rpath introduced in v2.2.10-40-g0da7d80,
fixing several testsuite failures on AIX.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoAvoid unwanted error message in configure output.
Ralf Wildenhues [Sat, 7 Aug 2010 17:16:35 +0000 (19:16 +0200)] 
Avoid unwanted error message in configure output.

* libltdl/m4/libtool.m4 (_LT_PROG_ECHO_BACKSLASH): Try print
in subshell, so eventual `print: not found' is hidden reliably.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoFix compilation of program sources on AIX.
Ralf Wildenhues [Sat, 7 Aug 2010 17:16:23 +0000 (19:16 +0200)] 
Fix compilation of program sources on AIX.

* tests/lt_dlopenext.at (lt_dlopenext error messages): Do not
use $LIBTOOL when compiling plain object, AIX by default does
not enable static archives.
* tests/ltdl-libdir.at (libdir of installed modules): Likewise.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoDo not call toplevel configure in non-VPATH build.
Ralf Wildenhues [Sat, 7 Aug 2010 11:07:42 +0000 (13:07 +0200)] 
Do not call toplevel configure in non-VPATH build.

* tests/deplibs-mingw.at (deplibs without file command): Use
LT_AT_CONFIGURE for consistency, update comment about why it
might fail.
* tests/pic_flag.at (override pic_flag at configure time): Skip
test if we are building in-tree.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoAllow running pic_flag test with different shell.
Ralf Wildenhues [Sat, 7 Aug 2010 11:03:37 +0000 (13:03 +0200)] 
Allow running pic_flag test with different shell.

* tests/testsuite.at (LT_AT_CONFIGURE): Accept optional second
argument specifying the configure script to run.
* tests/pic_flag.at (override pic_flag at configure time):
Use LT_AT_CONFIGURE.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoEnsure not to reverse preserving of --debug for relinking/finish.
Ralf Wildenhues [Sat, 7 Aug 2010 05:41:12 +0000 (07:41 +0200)] 
Ensure not to reverse preserving of --debug for relinking/finish.

* libltdl/config/ltmain.m4sh (func_check_version_match): Only
preserve '--debug' switch if $opt_debug is not equal to ':'.
* tests/help.at (debug tracing): New test group.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoFix AC_NO_EXECUTABLES test failure on AIX.
Ralf Wildenhues [Fri, 6 Aug 2010 20:03:19 +0000 (22:03 +0200)] 
Fix AC_NO_EXECUTABLES test failure on AIX.

* libltdl/m4/libtool.m4 (_LT_SYS_MODULE_PATH_AIX): Wrap link
test in AC_CACHE_VAL, using cache variable $lt_cv_aix_libpath.
* tests/no-executables.at (AC_NO_EXECUTABLES): Preset it, to
avoid link test.
Bug report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoFix ltdl-libdir test for C++ compilers.
Ralf Wildenhues [Fri, 6 Aug 2010 19:41:11 +0000 (21:41 +0200)] 
Fix ltdl-libdir test for C++ compilers.

* tests/ltdl-libdir.at (libdir of installed modules): Declare
module function as extern "C".

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoLet `libtool' without arguments point to `--help' again.
Ralf Wildenhues [Wed, 4 Aug 2010 20:30:48 +0000 (22:30 +0200)] 
Let `libtool' without arguments point to `--help' again.

* libltdl/config/ltmain.m4sh (func_check_version_match):
Remove duplicate and wrong error check.
* tests/help.at (standard command line options): Extend test.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoAvoid syntax error due to shift of nonexistent parameter.
Ralf Wildenhues [Wed, 4 Aug 2010 20:30:01 +0000 (22:30 +0200)] 
Avoid syntax error due to shift of nonexistent parameter.

* libltdl/config/ltmain.m4sh <command-line handling>: Only shift
if there is a positional parameter to shift.  Fixes `libtool
--help' when dash is used.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoFix testsuite errors due to shell quoted parameter expansion issue.
Ralf Wildenhues [Tue, 3 Aug 2010 20:27:23 +0000 (22:27 +0200)] 
Fix testsuite errors due to shell quoted parameter expansion issue.

* tests/getopt-m4sh.at (_LT_AT_GETOPT_M4SH_SETUP): Insert space
between double-quoted and unquoted shell parameter, as bash
4.0.28 doesn't add one in its output if the expansion of the
second one starts with a space.
(short option splitting, enhanced shell short option splitting)
(long option splitting, XSI long option splitting): Add space in
expected output.
Fixes testsuite failures on AIX, FreeBSD, etc.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoFix build failure with AIX sh due to shell quoting error.
Ralf Wildenhues [Tue, 3 Aug 2010 19:49:10 +0000 (21:49 +0200)] 
Fix build failure with AIX sh due to shell quoting error.

* libltdl/config/ltmain.m4sh (func_append_quoted): Document
that this function inserts a separator space.
(func_mode_compile): Do not pass extra space here.
Fixes regression introduced in v2.2.10-49-gc13532a.
Report by Rainer Tammer.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoFix pic_flag test unportabilities.
Ralf Wildenhues [Mon, 2 Aug 2010 20:21:05 +0000 (22:21 +0200)] 
Fix pic_flag test unportabilities.

* tests/pic_flag.at (override pic_flag at configure time): Skip
test if the compiler produces a warning containing `fpic'.
Do not use nonportable `grep -e', for Solaris.
Report by Charles Wilson.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agofix bug in postdeps computation
Paolo Bonzini [Wed, 28 Jul 2010 21:55:24 +0000 (23:55 +0200)] 
fix bug in postdeps computation

* libltdl/m4/libtool.m4 (_LT_SYS_HIDDEN_LIBDEPS): Actually concatenate
$prev and $p.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
15 years agoDon't always skip XSI tests
Charles Wilson [Mon, 26 Jul 2010 04:03:07 +0000 (00:03 -0400)] 
Don't always skip XSI tests

tests/getopt-m4sh.at: Use new signature as implemented by
de8a0992b21b76a13c302cf48588ad5f6042595c, when determining
whether to test Extended-shell functions.

15 years agodllimport when the lib is shared and not linking with -static
Peter Rosin [Sun, 18 Jul 2010 15:17:15 +0000 (17:17 +0200)] 
dllimport when the lib is shared and not linking with -static

* tests/stresstest.at: Link with main.lo when liba is shared
and linking main with -no-install.

15 years agodllimport variables for MSVC in stresstest.at
Peter Rosin [Sun, 18 Jul 2010 15:17:06 +0000 (17:17 +0200)] 
dllimport variables for MSVC in stresstest.at

* tests/stresstest.at [MSVC]: dllimport all imported
variables.

15 years agodllimport the variable for MSVC in link-order.at
Peter Rosin [Sat, 17 Jul 2010 02:05:33 +0000 (04:05 +0200)] 
dllimport the variable for MSVC in link-order.at

* tests/link-order.at [MSVC]: Makes the test pass by dllimporting
imported variables when working with shared libraries.

15 years agoMake preloading heed libname_spec.
Peter Rosin [Thu, 8 Jul 2010 16:12:02 +0000 (18:12 +0200)] 
Make preloading heed libname_spec.

Fixes testsuite failure for lt_dladvise.at on MSYS/MSVC.

* libltdl/ltdl.c (libprefix): New static variable describing
the prefix of static archives.
(try_dlopen): Use libprefix.
* libltdl/m4/ltdl.m4 (_LTDL_SETUP): Export prefix of static
archives to config.h. Also fix assignment of LTDLOPEN to be more
efficient and less error prone while at it.

15 years agoFix a spurious trailing space and a botched merge.
Gary V. Vaughan [Thu, 8 Jul 2010 11:47:59 +0000 (18:47 +0700)] 
Fix a spurious trailing space and a botched merge.

* libltdl/m4/libtool.m4 (_LT_PROG_FUNCTION_REPLACE): Remove
spurious trailing space.
* ChangeLog: Reorder to match commit order after botched
merge.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoRename _LT_PROG_XSI_REPLACE macro to _LT_PROG_FUNCTION_REPLACE.
Gary V. Vaughan [Thu, 8 Jul 2010 11:47:59 +0000 (18:47 +0700)] 
Rename _LT_PROG_XSI_REPLACE macro to _LT_PROG_FUNCTION_REPLACE.

* libltdl/m4/libtool.m4 (_LT_PROG_XSI_SHELLFNS): Rename to
_LT_PROG_REPLACE_SHELLFNS.
(_LT_PROG_XSI_REPLACE): Rename to _LT_PROG_FUNCTION_REPLACE.
(_LT_PROG_FUNCTION_REPLACE): Change decorator comment to use
'Extended shell' rather than 'XSI' on successful replacement.
* libltdl/config/general.m4sh (func_dirname, func_basename)
(func_dirname_and_basename, func_stripname): Change decorator
comment to use 'extended shell' rather than 'XSI' on fallback
implementations.
* libltdl/config/getopt.m4sh (func_split_short_opt)
(func_split_long_opt): Ditto.
* libltdl/config/ltmain.m4sh (func_append, func_append_quoted)
(func_arith, func_len, func_lo2o, func_xform): Ditto.
* tests/getopt-m4sh.at (_LT_AT_XSI_FUNC_EXTRACT): Rename to
_LT_AT_EXTENDED_SHELL_FUNC_EXTRACT.
(_LT_AT_EXTENDED_SHELL_FUNC_EXTRACT): Change regular expression to
match new replacable function decorator comments.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoOptimize assignment of output_la.
Peter Rosin [Thu, 8 Jul 2010 12:23:02 +0000 (14:23 +0200)] 
Optimize assignment of output_la.

* libltdl/config/ltmain.m4sh (func_mode_link): Save two fork/exec
instances.
Report by Ralf Wildenhues.

15 years agoFix a cut-n-pasto in "2010-07-07 Charles Wilson" patch.
Gary V. Vaughan [Thu, 8 Jul 2010 11:33:31 +0000 (18:33 +0700)] 
Fix a cut-n-pasto in "2010-07-07 Charles Wilson" patch.

* libltdl/config/ltmain.m4sh (func_mode_link): Remove spurious
variable dereference.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoTidy m4 comment header underline.
Gary V. Vaughan [Wed, 7 Jul 2010 08:02:07 +0000 (15:02 +0700)] 
Tidy m4 comment header underline.

* libltdl/m4/libtool.m4 (_LT_CHECK_SHAREDLIB_FROM_LINKLIB): Make
sure hyphens in function name comment header underline line up.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years ago[cygwin|mingw] fix dlpreopen with --disable-static
Charles Wilson [Sat, 3 Jan 2009 01:39:15 +0000 (20:39 -0500)] 
[cygwin|mingw] fix dlpreopen with --disable-static

* libltdl/config/general.m4sh (func_tr_sh): New function.
* libltdl/config/ltmain.m4sh (func_generate_dlsyms) [cygwin|mingw]:
Obtain DLL name corresponding to import library by using value
stored in unique variable libfile_$(transliterated implib name).
If that fails, use $sharedlib_from_linklib_cmd to extract DLL
name from import library directly. Also, properly extract dlsyms
from the import library.
(func_mode_link) [cygwin|mingw]: Prefer to dlpreopen DLLs
over static libs when both are available.  When dlpreopening
DLLs, use linklib (that is, import lib) as dlpreopen file,
rather than DLL. Store name of associated la file in
unique variable libfile_$(transliterated implib name)
for later use.
(func_win32_libid): Accomodate pei-i386 import libs
as well as pe-i386.
(func_cygming_dll_for_implib): New function.
(func_cygming_dll_for_implib_fallback): New function.
(func_cygming_dll_for_implib_fallback_core): New function.
(func_cygming_gnu_implib_p): New function.
(func_cygming_ms_implib_p): New function.
* libltdl/m4/libtool.m4 (_LT_CMD_GLOBAL_SYMBOLS): Adjust sed
expressions for lt_cv_sys_global_symbol_to_c_name_address and
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
as trailing space after module name is optional.
(_LT_LINKER_SHLIBS) [cygwin|mingw][C++]:
Set exclude_expsyms correctly for $host. Simplify regular
expression in export_symbols_cmds.
(_LT_LINKER_SHLIBS) [cygwin|mingw|pw32][C]: Set exclude_expsyms
correctly for $host. Enable export_symbols_cmds to identify
DATA exports by _nm_ prefix.
(_LT_CHECK_SHAREDLIB_FROM_LINKLIB): New macro sets
sharedlib_from_linklib_cmd variable.
(_LT_DECL_DLLTOOL): New macro ensures DLLTOOL is always set.

15 years ago* tests/export.at [MSVC]: dllimport all imported variables.
Peter Rosin [Mon, 5 Jul 2010 11:02:54 +0000 (13:02 +0200)] 
* tests/export.at [MSVC]: dllimport all imported variables.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Signed-off-by: Peter Rosin <peda@lysator.liu.se>
15 years agoSupport for response files with $NM.
Peter Rosin [Thu, 1 Jul 2010 09:36:05 +0000 (11:36 +0200)] 
Support for response files with $NM.

* libltdl/m4/libtool.m4 (_LT_CMD_GLOBAL_SYMBOLS)
<nm_file_list_spec>: New tag variable. Set it to '@' if input
files can be passed to $NM in a file named with the '@' option.
* libltdl/config/ltmain.m4sh (func_mode_link): When
nm_file_list_spec is nonempty, use it to avoid skipped_export.
* doc/libtool.texi (libtool script contents): Document
new variable.

15 years agoFix ccache test for MSVC.
Ralf Wildenhues [Sat, 16 Aug 2008 16:19:43 +0000 (18:19 +0200)] 
Fix ccache test for MSVC.

* tests/static.at (ccache -all-static): Ignore compiler stderr.
Reported by Peter Rosin.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15 years agoAvoid false failures caused by filesystem interaction
Charles Wilson [Fri, 25 Jun 2010 04:06:30 +0000 (00:06 -0400)] 
Avoid false failures caused by filesystem interaction

* tests/dlloader-api.at (dlloader API): Use uglified names for
pseudo-modules.

Signed-off-by: Charles Wilson <libtool@cwilson.fastmail.fm>
15 years agoFix typo in "Add func_append_quoted and do..."
Peter Rosin [Sat, 3 Jul 2010 08:14:35 +0000 (10:14 +0200)] 
Fix typo in "Add func_append_quoted and do..."

* libltdl/config/ltmain.m4sh (func_mode_compile): Use
func_append_quoted instead of func_append.

Signed-off-by: Peter Rosin <peda@lysator.liu.se>
15 years agoDon't trigger file name expansion when embedding manifests.
Peter Rosin [Fri, 2 Jul 2010 06:17:19 +0000 (08:17 +0200)] 
Don't trigger file name expansion when embedding manifests.

* libltdl/m4/libtool.m4 (_LT_LINKER_SHLIBS)
[ cygwin, mingw, cegcc ] <cl*>: Remove all spaces in the
case statement of postlink_cmds to make file name expansion
more unlikely.
(_LT_LANG_CXX_CONFIG): Likewise, but also add the missing |.

Signed-off-by: Peter Rosin <peda@lysator.liu.se>
15 years agoFix regression caused by "Add func_append_quoted and do..."
Peter Rosin [Thu, 1 Jul 2010 17:22:29 +0000 (19:22 +0200)] 
Fix regression caused by "Add func_append_quoted and do..."

* libltdl/config/ltmain.m4sh (func_mode_link): Remove leftover
"_libs" trash.

Signed-off-by: Peter Rosin <peda@lysator.liu.se>
15 years agoFor MSVC, embed the manifest as a resource in the executable.
Peter Rosin [Mon, 28 Jun 2010 07:31:11 +0000 (09:31 +0200)] 
For MSVC, embed the manifest as a resource in the executable.

Fixes a lot of testsuite failures with MSVC 2003 (v8.0) and
above (and perhaps also MSVC .Net) related to running programs
that have been moved (e.g. installed) without their manifests
also having been moved.

* libltdl/m4/libtool.m4 (_LT_PATH_MANIFEST_TOOL): New macro
that locates the Manifest Tool (mt) and verifies that it is
indeed the manifest tool. The result is stored in the new
variable MANIFEST_TOOL.
(_LT_LINKER_SHLIBS) <postlink_cmds>: New tag variable.
[ cygwin, mingw, cegcc ] <cl*>: Embed the manifest file as a
resource. Make sure the embedding work regardless of if the
@OUTPUT@ file name includes a trailing $EXEEXT.
(_LT_LANG_CXX_CONFIG): Likewise.
(_LT_LINKER_SHLIBS, _LT_LANG_CXX_CONFIG): Require the above
_LT_PATH_MANIFEST_TOOL.
* libltdl/config/ltmain.m4sh (func_mode_link): After linking
a program, replace @OUTPUT@ in $postlink_cmds and then execute
the commands.
* doc/libtool.texi (libtool script contents): Document
new postlink_cmds variable.
(LT_INIT): Add that the MANIFEST_TOOL environment variable can
be used to override the manifest tool to use.
* tests/exeext.at: New. Make sure linking with both -o prog
and -o prog$EXEEXT works.
* Makefile.am (TESTSUITE_AT): Update.
(TESTS_ENVIRONMENT): Propagate $(MANIFEST_TOOL) to the
testsuite.
* NEWS: Add note of the new MANIFEST_TOOL environment variable.

15 years agoAdd MSVC support.
Peter Rosin [Thu, 24 Jun 2010 05:28:16 +0000 (07:28 +0200)] 
Add MSVC support.

* libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
(_LT_LINKER_SHLIBS, _LT_LANG_CXX_CONFIG) [mingw, cygwin]: Add
support for the Microsoft C/C++ Compiler (cl) relying on help
from the compile script in Automake.
* NEWS: Add note of the above.

15 years agoSkip `enhanced shell option appending' test when not available.
Gary V. Vaughan [Thu, 1 Jul 2010 03:44:12 +0000 (10:44 +0700)] 
Skip `enhanced shell option appending' test when not available.

* tests/getopt-m4sh.at [enhanced shell option appending]:
_LT_AT_XSI_FUNC_EXTRACT will not be able to find the enhanced
libtool func_append function if the replacement wasn't substituted
by configure, since the decorator comments will be different - in
that case simply skip the test.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoAdd func_append test cases for smart and retarded implementations.
Gary V. Vaughan [Tue, 29 Jun 2010 22:12:42 +0000 (05:12 +0700)] 
Add func_append test cases for smart and retarded implementations.

* tests/getopt-m4sh.at (_LT_AT_FALLBACK_FUNC_EXTRACT): New
macro to extract a fallback function implementation from
ltmain.m4sh.
[option appending]: Use it for a test of the fallback
implementation of func_append.
[enhanced shell option appending]: And also test the enhanced
implementation.
* libltdl/config/ltmain.m4sh (func_append_quoted): Fix missing \
to escape a quoted space for eval.
* libltdl/m4/libtool.m4 (_LT_PROG_XSI_SHELLFNS): Fix missing $ in
dereference of func_append inline replacement for retarded
shells.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoCorrect func_split_short_opt comment cut-n-pasto.
Gary V. Vaughan [Tue, 29 Jun 2010 09:32:46 +0000 (16:32 +0700)] 
Correct func_split_short_opt comment cut-n-pasto.

* libtool/config/getopt.m4sh (func_split_short_opt): Fix
the function comment.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoUse a real XSI compliant func_split_short_opt substitution.
Gary V. Vaughan [Tue, 29 Jun 2010 09:29:30 +0000 (16:29 +0700)] 
Use a real XSI compliant func_split_short_opt substitution.

* libtool/m4/libtool.m4 (_LT_CHECK_SHELL_FEATURES): Remove
test ${foo:n:m} substrings, instead adding a ${foo%??} check
to the existing XSI tests.
(_LT_PROG_XSI_SHELLFNS): Remove the ${foo:n:m} based
func_split_short_opt substitution in favour of a properly
XSI compliant substitution.
Suggested by Paolo Bonzini.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoAdd func_append_quoted and do inline func_append substitutions.
Gary V. Vaughan [Sun, 27 Jun 2010 23:06:22 +0000 (06:06 +0700)] 
Add func_append_quoted and do inline func_append substitutions.

* libtool/config/ltmain.m4sh: Replace all occurrences of
`foo="$foo bar"' with func_append. No decorator comment was
added since /func_append [a-zA-Z0-9_]* "/ is already an
excellent match regexp, and additional comments would only
complicate things.
(func_append_quoted): New function that quotes a value with
func_quote_for_eval before appending it.  To avoid quoting the
whitespace in the passed value, a single whitespace is added
automatically.  Changed callers where possible.
* libtool/m4/libtool.m4 (_LT_PROG_XSI_SHELLFNS): Perform a
`+=' implementation substitution for func_append_quoted.  More
importantly, systematically replace matching func_append calls
with inline `+=' when supported (for maximum speed), and
longhand `foo="$foo bar"' otherwise to avoid the function
overhead.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoAdd an XSI replacement for func_split_short_opt, with test cases.
Gary V. Vaughan [Sun, 27 Jun 2010 10:21:59 +0000 (17:21 +0700)] 
Add an XSI replacement for func_split_short_opt, with test cases.

* libltdl/config/getopt.m4sh (m4go_shortnoargs): Remove 'v' now
that getopt.m4sh doesn't steal that letter for the --version
short option.
* libltdl/config/ltmain.m4sh (M4SH_GETOPTS): We can now use 'v'
as a short option for '--verbose'.
* libltdl/config/getopt.m4sh (m4go_printopts): Add back in the
leading '-' for remaining non-argument short options.
(func_split_short_opt): Use the correct sed script variable.
* libltdl/m4/libtool.m4 (_LT_CHECK_SHELL_FEATURES): Also ensure
that XSI substring extraction is supported.
(_LT_PROG_XSI_SHELLFNS): Use XSI substring extraction to split
short options to avoid unnecessary forks if the host shell
supports that.
* tests/getopt-m4sh.at: New tests for getopt.m4sh coverage.
* Makefile.am (TESTSUITE_AT): Add getopt-m4sh.at.
(TESTS_ENVIRONMENT): Pass M4SH and SED for substition into the
m4sh expansion performed in tests/getopt-m4sh.at.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
15 years agoAdd missing case branch terminators.
Gary V. Vaughan [Sun, 27 Jun 2010 12:19:18 +0000 (19:19 +0700)] 
Add missing case branch terminators.

* libltdl/config/ltmain.m4sh: Fixed everal case branches with
missing ';;' terminators.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>