mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-24 14:24:59 +08:00
*** empty log message ***
This commit is contained in:
parent
090a0f7aaf
commit
7a82242678
12
ChangeLog
12
ChangeLog
@ -1,3 +1,13 @@
|
||||
Sat Apr 12 13:09:24 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
|
||||
|
||||
* 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 <gord@gnu.ai.mit.edu>
|
||||
|
||||
* ltconfig.in (hardcode_action): Fix silly logic error. From
|
||||
Bruno Haible.
|
||||
|
||||
Sat Apr 5 11:26:06 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
|
||||
|
||||
* ltmain.sh.in (install): Relink if hardcode_action is `relink',
|
||||
@ -23,7 +33,7 @@ Wed Apr 2 10:36:31 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
|
||||
|
||||
Tue Apr 1 10:01:20 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
|
||||
|
||||
* 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.
|
||||
|
@ -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
|
||||
|
||||
|
2
NEWS
2
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.
|
||||
|
3
PACKAGES
3
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:
|
||||
|
3
README
3
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
|
||||
<gord@gnu.ai.mit.edu>.
|
||||
<gord@gnu.ai.mit.edu>. Don't forget to mention the version of libtool
|
||||
that you are currently using (by typing `ltconfig --version').
|
||||
|
@ -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:
|
||||
|
||||
<URL:ftp://ftp.cygnus.com/pub/tromey/>
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user