From: Gordon Matzigkeit Date: Sat, 12 Apr 1997 19:34:54 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release-1-0a~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a8224267815b9c60f09ca92cf386c033c3dde9b;p=thirdparty%2Flibtool.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 67017e47d..100f2fdc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Sat Apr 12 13:09:24 1997 Gordon Matzigkeit + + * ltconfig.in (linker): Some GNU ld's don't accept `--version', + but do accept `-v'. From Stephan Kulow. + +Mon Apr 7 09:39:02 1997 Gordon Matzigkeit + + * ltconfig.in (hardcode_action): Fix silly logic error. From + Bruno Haible. + Sat Apr 5 11:26:06 1997 Gordon Matzigkeit * ltmain.sh.in (install): Relink if hardcode_action is `relink', @@ -23,7 +33,7 @@ Wed Apr 2 10:36:31 1997 Gordon Matzigkeit Tue Apr 1 10:01:20 1997 Gordon Matzigkeit - * Makefile.am (EXTRA_DIST): Distribute libtool.pkg. + * Makefile.am (EXTRA_DIST): Distribute libtool.prj. * Shameless plug: Changed source code management system from CVS to PRCS. diff --git a/Makefile.am b/Makefile.am index 6ae37c899..ec784315c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,7 +11,7 @@ aclocal_macros = libtool.m4 # Distribute ltconfig and ltmain.sh so that the demo directory works. EXTRA_DIST = $(aclocal_macros) libtoolize.in ltconfig ltconfig.in \ - ltmain.sh ltmain.sh.in README-automake libtool.pkg + ltmain.sh ltmain.sh.in README-automake libtool.prj CLEANFILES = libtool libtoolize MAINTAINERCLEANFILES = ltconfig ltmain.sh diff --git a/NEWS b/NEWS index 8f5a2dd2b..b32031e18 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ NEWS - list of user-visible changes between releases of GNU libtool. -New in 0.9d: +New in 0.9e: * Bug fixes. * Automake support for Libtool now uses the LTLIBRARIES primary. See the Automake documentation for more information. diff --git a/PACKAGES b/PACKAGES index 23998ac26..62b6ef480 100644 --- a/PACKAGES +++ b/PACKAGES @@ -5,7 +5,8 @@ Free: http://www.ens.fr/~laburthe/claire.html ftp://ftp.x.org/contrib/widgets/motif/spinbox/ The GNU Guile project. -GTK+ and GIMP (Generic Image Manipulation Program). http://www. +GTK+ and GIMP (Generic Image Manipulation Program). + http://www.xcf.berkeley.edu/~gimp/gimp.html SANE (Scanner Access Now Easy): http://www.azstarnet.com/~davidm/ Nonfree: diff --git a/README b/README index 2d20bc771..e8b946b30 100644 --- a/README +++ b/README @@ -33,4 +33,5 @@ for a list of platforms that libtool shared library support was tested on. If you have any suggestions or bug reports, or you wish to port libtool to a new platform, please send electronic mail to Gord Matzigkeit -. +. Don't forget to mention the version of libtool +that you are currently using (by typing `ltconfig --version'). diff --git a/README-automake b/README-automake index 1640da7f7..46025b521 100644 --- a/README-automake +++ b/README-automake @@ -3,8 +3,8 @@ libtool, that may not work with your own copy of Automake. Only releases of Automake after automake-1.1m work with libtool as documented in the manual. -You can find the latest Automake prerelease (warning: it may have -bugs) at: +You can find the latest Automake prerelease (warning: it is not +guaranteed to be completely stable) at: diff --git a/doc/libtool.texi b/doc/libtool.texi index 5c5017ec4..8bc275812 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -1897,7 +1897,8 @@ Finally, send a bug report to @value{BUGADDR} with any appropriate @emph{facts}, such as test suite output (@pxref{When Tests Fail}), all the details needed to reproduce the bug, and a brief description of why you think the behaviour is a bug. Be sure to include the word -``libtool'' in the subject line. +``libtool'' in the subject line, as well as the version number you are +using (which can be found by typing @kbd{ltconfig --version}). @node Maintaining @chapter Maintainance Notes for Libtool diff --git a/ltconfig.in b/ltconfig.in index f4af93a4a..e146e788b 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -483,7 +483,7 @@ with_gnu_ld=no set dummy $LD linker="$2" echo $ac_n "checking if $LD is GNU ld... $ac_c" 1>&6 -if $LD --version 2>&1 | egrep '(GNU ld|with BFD)' > /dev/null; then +if $LD -v 2>&1 | egrep '(GNU ld|with BFD)' > /dev/null; then with_gnu_ld=yes linker="GNU ld" fi @@ -622,8 +622,8 @@ if test -n "$hardcode_libdir_flag_spec"; then # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi -elif test "$hardcode_direct" != yes || - test "$hardcode_minus_L" != yes || +elif test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" != yes; then # We can't hardcode anything. hardcode_action=unsupported