2004-08-29 00:15:23 +08:00
|
|
|
GNU Libtool
|
|
|
|
***********
|
|
|
|
|
|
|
|
1. Introduction
|
|
|
|
===============
|
|
|
|
|
1998-02-12 13:45:15 +08:00
|
|
|
This is GNU Libtool, a generic library support script. Libtool hides
|
1997-07-24 14:06:16 +08:00
|
|
|
the complexity of using shared libraries behind a consistent, portable
|
1997-04-02 03:18:28 +08:00
|
|
|
interface.
|
1997-04-02 02:29:23 +08:00
|
|
|
|
1998-02-12 13:45:15 +08:00
|
|
|
Libtool's home page is:
|
|
|
|
|
2010-09-18 11:08:25 +08:00
|
|
|
http://www.gnu.org/software/libtool/libtool.html
|
1998-02-12 13:45:15 +08:00
|
|
|
|
2007-02-25 23:33:24 +08:00
|
|
|
See the file NEWS for a description of recent changes to Libtool.
|
1997-04-02 02:29:23 +08:00
|
|
|
|
2010-09-18 11:08:25 +08:00
|
|
|
Please note that you can build GNU Libtool from this directory using a
|
|
|
|
vendor Make program as long as this is an official release tarball;
|
|
|
|
otherwise you will need GNU Make for sane VPATH support. See the file
|
|
|
|
INSTALL for complete generic instructions on how to build and install
|
|
|
|
Libtool. Also, see the file doc/notes.txt for some platform- specific
|
|
|
|
information.
|
|
|
|
|
|
|
|
See the info node (libtool)Tested Platforms. (or the file doc/PLATFORMS)
|
|
|
|
for a list of platforms that Libtool already supports.
|
1997-04-02 03:04:40 +08:00
|
|
|
|
2010-09-18 11:08:25 +08:00
|
|
|
Please try it on all the platforms you have access to:
|
|
|
|
|
|
|
|
* If it builds and passes the test suite (`gmake check'), please send
|
|
|
|
a short note to the libtool mailing list <libtool@gnu.org> with a
|
|
|
|
subject line including the string `[PLATFORM]', and containing the
|
|
|
|
details from the end of `./libtool --help' in the body.
|
|
|
|
* Otherwise, see `Reporting Bugs' below for how to help us fix any
|
|
|
|
problems you discover.
|
|
|
|
|
|
|
|
To use Libtool, add the new generic library building commands to your
|
|
|
|
Makefile, Makefile.in, or Makefile.am. See the documentation for
|
|
|
|
details.
|
2004-08-29 00:15:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
2. Reporting Bugs
|
|
|
|
=================
|
1997-04-02 03:19:30 +08:00
|
|
|
|
2010-09-18 11:38:10 +08:00
|
|
|
If this distribution doesn't work for you, before you report the
|
|
|
|
problem, at least try upgrading to the latest released version first,
|
|
|
|
and see whether the issue persists. If you feel able, you can also
|
|
|
|
check whether the issue has been fixed in the development sources for
|
|
|
|
the next release (see `Obtaining the Latest Sources' below).
|
|
|
|
|
|
|
|
Once you've determined that your bug is still not fixed in the latest
|
|
|
|
version, please send a full report to <bug-libtool@gnu.org>, including:
|
|
|
|
|
|
|
|
1. the information from the end of the help message given by
|
|
|
|
`./libtool --help', and the verbose output of any failed tests
|
|
|
|
(see `The Test Suites' immediately below);
|
|
|
|
2. complete instructions for how to reproduce your bug, along with
|
|
|
|
the results you were expecting, and how they differ from what you
|
|
|
|
actually see;
|
|
|
|
3. a workaround or full fix for the bug, if you have it;
|
|
|
|
4. a copy of `tests/testsuite.log' if you are experiencing failures
|
|
|
|
in the Autotest testsuite.
|
|
|
|
5. new test cases for the testsuite that demonstrate the bug are
|
|
|
|
especially welcome, and will help to ensure that future releases
|
|
|
|
don't reintroduce the problem - if you're not able to write a
|
|
|
|
complete testsuite case, a simple standalone shell script is
|
|
|
|
usually good enough to help us write a test for you.
|
|
|
|
|
|
|
|
If you have any other suggestions, or if you wish to port Libtool to a
|
|
|
|
new platform, please send email to the mailing list <libtool@gnu.org>.
|
|
|
|
|
|
|
|
Please note that if you send us an non-trivial code for inclusion in a
|
|
|
|
future release, we may ask you for a copyright assignment (for brief
|
|
|
|
details see the `Copyright Assignment' section on our `Contributing'
|
|
|
|
webpage <http://www.gnu.org/software/libtool/contribute.html>).
|
2004-08-29 00:15:23 +08:00
|
|
|
|
|
|
|
|
2005-12-17 00:50:00 +08:00
|
|
|
3. The Test Suites
|
|
|
|
==================
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2005-12-17 00:50:00 +08:00
|
|
|
Libtool comes with two integrated sets of tests to check that your build
|
2007-02-25 23:33:24 +08:00
|
|
|
is sane. You can run both test suites like this, assuming that `gmake'
|
|
|
|
refers to GNU make:
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
gmake -k check
|
2007-02-25 23:33:24 +08:00
|
|
|
|
|
|
|
If you want to run the old testsuite only, do it like this:
|
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
gmake check TESTSUITEFLAGS=-V
|
2007-02-25 23:33:24 +08:00
|
|
|
|
|
|
|
If you want to run the new testsuite only, do it like this:
|
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
gmake check-local
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2005-12-17 00:50:00 +08:00
|
|
|
The tests of the old test suite run in groups in the various demo
|
|
|
|
subdirectories, so if one of the tests early in a group FAILs, the rest
|
|
|
|
of the tests in that group will be SKIPped. If you see a FAIL further
|
|
|
|
into a group, even if a test with the same name PASSes in another test
|
|
|
|
group, you need to take note of the name of the first test in the group
|
|
|
|
if you want to rerun the group with FAILures to get verbose output.
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2005-12-17 00:50:00 +08:00
|
|
|
To run a test group of the old test suite in isolation (say, you think
|
|
|
|
you have fixed a bug, but don't want to rerun the entire suite), you can
|
|
|
|
do it like this:
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
gmake check TESTSUITEFLAGS=-V TESTS="tests/cdemo-static.test \
|
|
|
|
tests/cdemo-static-make.test tests/cdemo-static-exec.test"
|
2004-08-29 00:15:23 +08:00
|
|
|
|
|
|
|
Providing that you have a FAIL from the most recent group from a
|
|
|
|
particular demo directory (like the cdemo-static.test group above), you
|
|
|
|
can explore the state of the directory to help with debugging.
|
|
|
|
|
2005-12-17 00:50:00 +08:00
|
|
|
If you wish to report a test group failure to the libtool list, you need
|
|
|
|
to send the verbose output of the FAILing group, along with the
|
|
|
|
information from the end of `$(top_builddir)/libtool --help' to the bug
|
|
|
|
report mailing list, <bug-libtool@gnu.org> with a subject line that
|
2010-08-22 12:30:25 +08:00
|
|
|
includes the string `[TEST FAILURE]'. The file test-suite.log contains
|
|
|
|
the verbose output from all failed tests.
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2010-08-22 12:30:25 +08:00
|
|
|
In order to enable debug shell tracing, you can set VERBOSE=debug when
|
|
|
|
running the old test suite.
|
2005-12-17 00:50:00 +08:00
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
In the long run, Libtool will move to using only the new, Autotest-
|
|
|
|
driven testsuite. Its usage is documented in:
|
2005-12-17 00:50:00 +08:00
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
info Autoconf 'testsuite Invocation'
|
2005-12-17 00:50:00 +08:00
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
but simple help may also be obtained through:
|
2005-12-17 00:50:00 +08:00
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
gmake check-local TESTSUITEFLAGS='--help'
|
2005-12-17 00:50:00 +08:00
|
|
|
|
|
|
|
For verbose output, add the flag `-v', for running only a subset of the
|
|
|
|
independent tests, merely specify them by number or by keyword, both of
|
2007-04-26 05:02:57 +08:00
|
|
|
which are displayed with the `--list' flag. For example, the `libtool'
|
|
|
|
keyword is used for the tests that exercise only this script. So it is
|
|
|
|
possible to test an installed script, possibly from a different Libtool
|
2010-09-18 11:46:09 +08:00
|
|
|
release, with:
|
|
|
|
|
|
|
|
gmake check-local \
|
|
|
|
TESTSUITEFLAGS="-k libtool LIBTOOL=/path/to/libtool"
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2009-03-01 00:13:27 +08:00
|
|
|
Some tests, like the one exercising max_cmd_len limits, make use of this
|
|
|
|
to invoke the testsuite recursively on a subset of tests. For these
|
|
|
|
tests, the variable INNER_TESTSUITEFLAGS may be used. It will be
|
2010-09-18 11:46:09 +08:00
|
|
|
expanded right after the `-k libtool', without separating whitespace, so
|
|
|
|
that further limiting of the recursive set of tests is possible. For
|
|
|
|
example, to run only the template tests within the max_cmd_len, use:
|
|
|
|
|
|
|
|
gmake check-local TESTSUITEFLAGS="-v -x -k max_cmd_len \
|
2009-03-01 00:13:27 +08:00
|
|
|
INNER_TESTSUITEFLAGS=',template -v -x'"
|
|
|
|
|
2005-12-17 00:50:00 +08:00
|
|
|
If you wish to report test failures to the libtool list, you need to
|
|
|
|
send the file `tests/testsuite.log' to the bug report mailing list,
|
|
|
|
<bug-libtool@gnu.org>.
|
2004-08-29 00:15:23 +08:00
|
|
|
|
2010-09-18 11:46:09 +08:00
|
|
|
|
2010-09-16 10:47:45 +08:00
|
|
|
4. Obtaining the Latest Sources
|
|
|
|
===============================
|
|
|
|
|
2010-09-18 12:13:50 +08:00
|
|
|
* With the exception of ancient releases, all official GNU Libtool
|
|
|
|
releases have a detached GPG signature file. With this you can verify
|
|
|
|
that the corresponding file (i.e. without the `.sig' suffix) is the
|
|
|
|
same file that was released by the owner of it's GPG key ID. First,
|
|
|
|
be sure to download both the .sig file and the corresponding release,
|
|
|
|
then run a command like this:
|
|
|
|
|
|
|
|
gpg --verify libtool-x.y.z.tar.gz.sig
|
|
|
|
|
|
|
|
If that command fails because you don't have the required public key,
|
|
|
|
then run this command to import it:
|
|
|
|
|
|
|
|
gpg --keyserver keys.gnupg.net --recv-keys 2983D606
|
|
|
|
|
|
|
|
and then rerun the `gpg --verify' command.
|
|
|
|
|
|
|
|
* Official stable releases of GNU Libtool, along with these detached
|
|
|
|
signature files are available from:
|
|
|
|
|
|
|
|
ftp://ftp.gnu.org/gnu/libtool
|
|
|
|
|
|
|
|
To reduce load on the main server, please use one of the mirrors
|
|
|
|
listed at:
|
|
|
|
|
|
|
|
http://www.gnu.org/order/ftp.html
|
|
|
|
|
|
|
|
* Alpha quality pre-releases of GNU Libtool, also with detached
|
|
|
|
signature files are available from:
|
|
|
|
|
|
|
|
ftp://alpha.gnu.org/gnu/libtool
|
|
|
|
|
|
|
|
and some of the mirrors listed at:
|
|
|
|
|
|
|
|
http://www.gnu.org/order/ftp.html
|
|
|
|
|
|
|
|
* Nightly snapshots of the unreleased development trunk of GNU Libtool
|
|
|
|
are available from:
|
|
|
|
|
|
|
|
http://pogma.com/libtool
|
|
|
|
|
|
|
|
These files do not have signatures, but will allow you to easily
|
|
|
|
determine whether the most recent development code still exhibits any
|
|
|
|
bugs you have discovered, without requiring you to install a complete
|
|
|
|
build environment and the extra tools needed to bootstrap a version
|
|
|
|
control checkout.
|
|
|
|
|
2010-09-16 10:47:45 +08:00
|
|
|
* The master libtool repository is stored in git.
|
|
|
|
|
|
|
|
If you are a member of the savannah group for GNU Libtool, a writable
|
|
|
|
copy of the libtool repository can be obtained by:
|
|
|
|
|
|
|
|
git clone <savannah-user>@git.sv.gnu.org:/srv/git/libtool.git
|
|
|
|
|
|
|
|
If you are behind a firewall that blocks the git protocol, you may
|
|
|
|
find it useful to use
|
|
|
|
|
|
|
|
git config --global url.http://git.sv.gnu.org/r/.insteadof \
|
|
|
|
git://git.sv.gnu.org/
|
|
|
|
|
|
|
|
to force git to transparently rewrite all savannah git references to
|
|
|
|
use http.
|
|
|
|
|
|
|
|
If you are not a member of the savannah group for GNU Libtool, you can
|
|
|
|
still fetch a read-only copy with either:
|
|
|
|
|
|
|
|
git clone git://git.sv.gnu.org/libtool.git
|
|
|
|
|
|
|
|
or using the CVS pserver protocol:
|
|
|
|
|
|
|
|
cvs -d:pserver:anonymous@pserver.git.sv.gnu.org:/srv/git/libtool.git \
|
|
|
|
co -d libtool HEAD
|
|
|
|
|
|
|
|
* Before you can build from git, you need to bootstrap. This requires:
|
|
|
|
- Autoconf 2.62 or later
|
|
|
|
- Automake 1.11.1 or later
|
|
|
|
- Help2man 1.29 or later
|
|
|
|
- Xz 4.999.8beta or later (from <http://tukaani.org/xz>)
|
|
|
|
- Texinfo 4.8 or later
|
|
|
|
- Any prerequisites of the above (such as m4, perl, tex)
|
|
|
|
|
|
|
|
Note that these bootstrapping dependencies are much stricter than
|
|
|
|
those required to use a destributed release for your own packages.
|
|
|
|
After installation, GNU Libtool is designed to work either standalone,
|
|
|
|
or optionally with:
|
|
|
|
- Autoconf 2.59 or later
|
|
|
|
- Automake 1.9.6 or later
|
|
|
|
|
2010-09-18 12:13:50 +08:00
|
|
|
* The `bootstrap' script sets up the source directory for you to hack,
|
|
|
|
though it may take quite some time to run. If you don't intend to
|
|
|
|
re-run the test suite, you can speed up the `bootstrap' step by an
|
|
|
|
order of magnitude if you call it like this instead:
|
|
|
|
|
|
|
|
reconfdirs='. libltdl' ./bootstrap
|
|
|
|
|
|
|
|
|
2010-09-16 10:47:45 +08:00
|
|
|
5. Version Numbering
|
2004-08-29 00:15:23 +08:00
|
|
|
====================
|
2000-01-15 07:40:20 +08:00
|
|
|
|
2005-12-17 00:50:00 +08:00
|
|
|
People have complained that they find the version numbering scheme under
|
|
|
|
which libtool is released confusing... so we've changed it!
|
2004-08-29 00:15:23 +08:00
|
|
|
|
|
|
|
It works like this:
|
2000-01-15 07:40:20 +08:00
|
|
|
|
|
|
|
<major-number>.<minor-number>
|
|
|
|
|
|
|
|
Releases with a <major-number> less than 1 were not yet feature
|
2004-08-29 00:15:23 +08:00
|
|
|
complete. Releases with a <major-number> of 1 used the old numbering
|
|
|
|
scheme that everyone disliked so much. Releases with a <major-number>
|
|
|
|
of 2 us the new scheme described here. If libtool ever undergoes a
|
|
|
|
major rewrite or substantial restructuring, the <major-number> will be
|
|
|
|
incremented again.
|
|
|
|
|
|
|
|
If we make a patch release to fix bugs in a stable release, we use a
|
|
|
|
third number, so:
|
|
|
|
|
|
|
|
<major-number>.<minor-number>.<micro-number>
|
|
|
|
|
|
|
|
Version numbers are chosen to make it easy for users to decide two
|
|
|
|
things:
|
|
|
|
|
|
|
|
Q: How `developed' is this release?
|
|
|
|
A: The higher the number, the better!
|
|
|
|
Q: How `stable' is this release?
|
|
|
|
A: - If the <minor-number> is even, it is a stable release, `2.0'.
|
|
|
|
- If the <minor-number> is odd, it is a development version with
|
|
|
|
new features compared to the last stable release, `2.1a'.
|
|
|
|
- If it has an `odd'[1] letter after the version number, it is a
|
|
|
|
snapshot direct from CVS, `2.1a'.
|
|
|
|
- If it has an `even'[1] letter after the version number, it is an
|
|
|
|
alpha quality release, `2.1b'.
|
|
|
|
- If it has three numbers in the version, it is a patch release,
|
|
|
|
fixing bugs from the stable release (with no new features), `2.0.1'.
|
|
|
|
|
|
|
|
[1] We always increment the letter in the repository before *and* after
|
|
|
|
making a release tarball. This means that "odd" letters
|
|
|
|
(a,c,e,g...) only exist in the repository, and "even" letters are
|
|
|
|
used instantaneously for an alpha release. Since the odd lettered
|
|
|
|
version numbers cover many states of the tree, we also qualify them
|
|
|
|
by adding the cvs version of the ChangeLog:
|
|
|
|
|
|
|
|
$ libtool --version
|
|
|
|
ltmain.sh (GNU libtool 1.1603 2004/09/12 22:02:07) 2.1a
|
|
|
|
|
|
|
|
Copyright (C) 2004 Free Software Foundation, Inc.
|
|
|
|
This is free software; see the source for copying conditions. There is NO
|
|
|
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
For more details about version numbers, see:
|
|
|
|
|
|
|
|
http://www.gnu.org/software/libtool/contribute.html
|
2010-09-18 12:13:50 +08:00
|
|
|
--
|
2010-08-22 12:30:25 +08:00
|
|
|
Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
|
2009-03-01 00:13:27 +08:00
|
|
|
Foundation, Inc.
|
* HACKING (Licensing Rules): Explain the various license texts
used for files distributed with Libtool, and update license text
to match.
* Makefile.am, Makefile.maint README, README.alpha, THANKS, TODO,
bootstrap, clcommit.m4sh, configure.ac, libltdl/Makefile.inc,
libltdl/README, libltdl/argz.c, libltdl/argz_.h,
libltdl/config/general.m4sh, libltdl/config/getopt.m4sh,
libltdl/config/ltmain.m4sh, libltdl/config/mailnotify.m4sh,
libltdl/config/mkstamp, libltdl/configure.ac,
libltdl/libltdl/lt__alloc.h, libltdl/libltdl/lt__dirent.h,
libltdl/libltdl/lt__glibc.h, libltdl/libltdl/lt__private.h,
libltdl/libltdl/lt__strl.h, libltdl/libltdl/lt_dlloader.h,
libltdl/libltdl/lt_error.h, libltdl/libltdl/lt_system.h,
libltdl/libltdl/slist.h, libltdl/loaders/dld_link.c,
libltdl/loaders/dlopen.c, libltdl/loaders/dyld.c,
libltdl/loaders/load_add_on.c, libltdl/loaders/loadlibrary.c,
libltdl/loaders/preopen.c, libltdl/loaders/shl_load.c,
libltdl/lt__alloc.c, libltdl/lt__dirent.c, libltdl/lt__strl.c,
libltdl/lt_dlloader.c, libltdl/lt_error.c, libltdl/ltdl.c,
libltdl/ltdl.h, libltdl/m4/argz.m4, libltdl/m4/libtool.m4,
libltdl/m4/ltdl.m4, libltdl/m4/ltoptions.m4,
libltdl/m4/ltsugar.m4, libltdl/m4/ltversion.in,
Jlibltdl/m4/ltversion.m4, libltdl/m4/lt~obsolete.m4,
libltdl/slist.c, libtoolize.m4sh, tests/am-subdir.at,
tests/cdemo-conf.test, tests/cdemo-exec.test,
tests/cdemo-make.test, tests/cdemo-shared.test,
tests/cdemo-static.test, tests/cdemo-undef.test,
tests/cdemo/Makefile.am, tests/cdemo/configure.ac,
tests/cdemo/foo.c, tests/cdemo/foo.h, tests/cdemo/main.c,
tests/cmdline_wrap.at, tests/convenience.at, tests/defs.m4sh,
tests/demo-conf.test, tests/demo-deplibs.test,
tests/demo-exec.test, tests/demo-hardcode.test,
tests/demo-inst.test, tests/demo-make.test,
tests/demo-nofast.test, tests/demo-noinst-link.test,
tests/demo-nopic.test, tests/demo-pic.test,
tests/demo-relink.test, tests/demo-shared.test,
tests/demo-static.test, tests/demo-unst.test,
tests/demo/Makefile.am, tests/demo/configure.ac,
tests/demo/dlmain.c, tests/demo/foo.c,
tests/demo/foo.h, tests/demo/hell1.c, tests/demo/hell2.c,
tests/demo/hello.c, tests/demo/main.c,
tests/depdemo-conf.test, tests/depdemo-exec.test,
tests/depdemo-inst.test, tests/depdemo-make.test,
tests/depdemo-nofast.test, tests/depdemo-relink.test,
tests/depdemo-shared.test, tests/depdemo-static.test,
tests/depdemo-unst.test, tests/depdemo/Makefile.am,
tests/depdemo/configure.ac, tests/depdemo/l1/Makefile.am,
tests/depdemo/l1/l1.c, tests/depdemo/l1/l1.h,
tests/depdemo/l2/Makefile.am, tests/depdemo/l2/l2.c,
tests/depdemo/l2/l2.h, tests/depdemo/l3/Makefile.am,
tests/depdemo/l3/l3.c, tests/depdemo/l3/l3.h,
tests/depdemo/l4/Makefile.am, tests/depdemo/l4/l4.c,
tests/depdemo/l4/l4.h, tests/depdemo/main.c,
tests/depdemo/sysdep.h, tests/deplibs-ident.at,
tests/destdir.at, tests/duplicate_conv.at,
tests/duplicate_deps.at, tests/duplicate_members.at,
tests/early-libtool.at, tests/export.at,
tests/f77demo-conf.test, tests/f77demo-exec.test,
tests/f77demo-make.test, tests/f77demo-shared.test,
tests/f77demo-static.test, tests/f77demo/Makefile.am,
tests/f77demo/configure.ac, tests/f77demo/cprogram.c,
tests/f77demo/foo.h, tests/f77demo/fooc.c,
tests/fail.at, tests/fcdemo-conf.test, tests/fcdemo-exec.test,
tests/fcdemo-make.test, tests/fcdemo-shared.test,
tests/fcdemo-static.test, tests/fcdemo/Makefile.am,
tests/fcdemo/configure.ac, tests/fcdemo/cprogram.c,
tests/fcdemo/foo.h, tests/fcdemo/fooc.c,
tests/inherited_flags.at, tests/libtoolize.at,
tests/link-2.test, tests/link-order.at, tests/link-order2.at,
tests/link.test, tests/lt_dlexit.at, tests/mdemo-conf.test,
tests/mdemo-dryrun.test, tests/mdemo-exec.test,
tests/mdemo-inst.test, tests/mdemo-make.test,
tests/mdemo-shared.test, tests/mdemo-static.test,
tests/mdemo-unst.test, tests/mdemo/Makefile.am,
tests/mdemo/configure.ac, tests/mdemo/foo.h, tests/mdemo/foo1.c,
tests/mdemo/foo2.c, tests/mdemo/main.c, tests/mdemo/mlib.c,
tests/mdemo/sub.c, tests/mdemo2-conf.test,
tests/mdemo2-exec.test, tests/mdemo2-make.test,
tests/mdemo2/Makefile.am, tests/mdemo2/configure.ac,
tests/mdemo2/main.c, tests/nomode.test, tests/nonrecursive.at,
tests/objectlist.test, tests/old-m4-iface.at,
tests/pdemo-conf.test, tests/pdemo-exec.test,
tests/pdemo-inst.test, tests/pdemo-make.test,
tests/pdemo/Makefile.am, tests/pdemo/configure.ac,
tests/pdemo/foo.h, tests/pdemo/longer_file_name_dlmain.c,
tests/pdemo/longer_file_name_foo.c,
tests/pdemo/longer_file_name_foo2.c,
tests/pdemo/longer_file_name_hell1.c,
tests/pdemo/longer_file_name_hell2.c,
tests/pdemo/longer_file_name_hello.c,
tests/pdemo/longer_file_name_main.c, tests/quote.test,
tests/recursive.at, tests/search-path.at, tests/sh.test,
tests/shlibpath.at, tests/standalone.at, tests/static.at,
tests/stresstest.at, tests/subproject.at, tests/suffix.test,
tests/tagdemo-conf.test, tests/tagdemo-exec.test,
tests/tagdemo-make.test, tests/tagdemo-shared.test,
tests/tagdemo-static.test, tests/tagdemo-undef.test,
tests/tagdemo/Makefile.am, tests/tagdemo/baz.cpp,
tests/tagdemo/baz.h, tests/tagdemo/configure.ac,
tests/tagdemo/conv.cpp, tests/tagdemo/conv.h,
tests/tagdemo/foo.cpp, tests/tagdemo/foo.h,
tests/tagdemo/main.cpp, tests/tagtrace.test,
tests/template.at, tests/testsuite.at: Apply correct license
text according to the new rules set out in HACKING.
2007-03-25 20:12:44 +08:00
|
|
|
Written by Gary V. Vaughan, 2004
|
2004-08-29 00:15:23 +08:00
|
|
|
|
* HACKING (Licensing Rules): Explain the various license texts
used for files distributed with Libtool, and update license text
to match.
* Makefile.am, Makefile.maint README, README.alpha, THANKS, TODO,
bootstrap, clcommit.m4sh, configure.ac, libltdl/Makefile.inc,
libltdl/README, libltdl/argz.c, libltdl/argz_.h,
libltdl/config/general.m4sh, libltdl/config/getopt.m4sh,
libltdl/config/ltmain.m4sh, libltdl/config/mailnotify.m4sh,
libltdl/config/mkstamp, libltdl/configure.ac,
libltdl/libltdl/lt__alloc.h, libltdl/libltdl/lt__dirent.h,
libltdl/libltdl/lt__glibc.h, libltdl/libltdl/lt__private.h,
libltdl/libltdl/lt__strl.h, libltdl/libltdl/lt_dlloader.h,
libltdl/libltdl/lt_error.h, libltdl/libltdl/lt_system.h,
libltdl/libltdl/slist.h, libltdl/loaders/dld_link.c,
libltdl/loaders/dlopen.c, libltdl/loaders/dyld.c,
libltdl/loaders/load_add_on.c, libltdl/loaders/loadlibrary.c,
libltdl/loaders/preopen.c, libltdl/loaders/shl_load.c,
libltdl/lt__alloc.c, libltdl/lt__dirent.c, libltdl/lt__strl.c,
libltdl/lt_dlloader.c, libltdl/lt_error.c, libltdl/ltdl.c,
libltdl/ltdl.h, libltdl/m4/argz.m4, libltdl/m4/libtool.m4,
libltdl/m4/ltdl.m4, libltdl/m4/ltoptions.m4,
libltdl/m4/ltsugar.m4, libltdl/m4/ltversion.in,
Jlibltdl/m4/ltversion.m4, libltdl/m4/lt~obsolete.m4,
libltdl/slist.c, libtoolize.m4sh, tests/am-subdir.at,
tests/cdemo-conf.test, tests/cdemo-exec.test,
tests/cdemo-make.test, tests/cdemo-shared.test,
tests/cdemo-static.test, tests/cdemo-undef.test,
tests/cdemo/Makefile.am, tests/cdemo/configure.ac,
tests/cdemo/foo.c, tests/cdemo/foo.h, tests/cdemo/main.c,
tests/cmdline_wrap.at, tests/convenience.at, tests/defs.m4sh,
tests/demo-conf.test, tests/demo-deplibs.test,
tests/demo-exec.test, tests/demo-hardcode.test,
tests/demo-inst.test, tests/demo-make.test,
tests/demo-nofast.test, tests/demo-noinst-link.test,
tests/demo-nopic.test, tests/demo-pic.test,
tests/demo-relink.test, tests/demo-shared.test,
tests/demo-static.test, tests/demo-unst.test,
tests/demo/Makefile.am, tests/demo/configure.ac,
tests/demo/dlmain.c, tests/demo/foo.c,
tests/demo/foo.h, tests/demo/hell1.c, tests/demo/hell2.c,
tests/demo/hello.c, tests/demo/main.c,
tests/depdemo-conf.test, tests/depdemo-exec.test,
tests/depdemo-inst.test, tests/depdemo-make.test,
tests/depdemo-nofast.test, tests/depdemo-relink.test,
tests/depdemo-shared.test, tests/depdemo-static.test,
tests/depdemo-unst.test, tests/depdemo/Makefile.am,
tests/depdemo/configure.ac, tests/depdemo/l1/Makefile.am,
tests/depdemo/l1/l1.c, tests/depdemo/l1/l1.h,
tests/depdemo/l2/Makefile.am, tests/depdemo/l2/l2.c,
tests/depdemo/l2/l2.h, tests/depdemo/l3/Makefile.am,
tests/depdemo/l3/l3.c, tests/depdemo/l3/l3.h,
tests/depdemo/l4/Makefile.am, tests/depdemo/l4/l4.c,
tests/depdemo/l4/l4.h, tests/depdemo/main.c,
tests/depdemo/sysdep.h, tests/deplibs-ident.at,
tests/destdir.at, tests/duplicate_conv.at,
tests/duplicate_deps.at, tests/duplicate_members.at,
tests/early-libtool.at, tests/export.at,
tests/f77demo-conf.test, tests/f77demo-exec.test,
tests/f77demo-make.test, tests/f77demo-shared.test,
tests/f77demo-static.test, tests/f77demo/Makefile.am,
tests/f77demo/configure.ac, tests/f77demo/cprogram.c,
tests/f77demo/foo.h, tests/f77demo/fooc.c,
tests/fail.at, tests/fcdemo-conf.test, tests/fcdemo-exec.test,
tests/fcdemo-make.test, tests/fcdemo-shared.test,
tests/fcdemo-static.test, tests/fcdemo/Makefile.am,
tests/fcdemo/configure.ac, tests/fcdemo/cprogram.c,
tests/fcdemo/foo.h, tests/fcdemo/fooc.c,
tests/inherited_flags.at, tests/libtoolize.at,
tests/link-2.test, tests/link-order.at, tests/link-order2.at,
tests/link.test, tests/lt_dlexit.at, tests/mdemo-conf.test,
tests/mdemo-dryrun.test, tests/mdemo-exec.test,
tests/mdemo-inst.test, tests/mdemo-make.test,
tests/mdemo-shared.test, tests/mdemo-static.test,
tests/mdemo-unst.test, tests/mdemo/Makefile.am,
tests/mdemo/configure.ac, tests/mdemo/foo.h, tests/mdemo/foo1.c,
tests/mdemo/foo2.c, tests/mdemo/main.c, tests/mdemo/mlib.c,
tests/mdemo/sub.c, tests/mdemo2-conf.test,
tests/mdemo2-exec.test, tests/mdemo2-make.test,
tests/mdemo2/Makefile.am, tests/mdemo2/configure.ac,
tests/mdemo2/main.c, tests/nomode.test, tests/nonrecursive.at,
tests/objectlist.test, tests/old-m4-iface.at,
tests/pdemo-conf.test, tests/pdemo-exec.test,
tests/pdemo-inst.test, tests/pdemo-make.test,
tests/pdemo/Makefile.am, tests/pdemo/configure.ac,
tests/pdemo/foo.h, tests/pdemo/longer_file_name_dlmain.c,
tests/pdemo/longer_file_name_foo.c,
tests/pdemo/longer_file_name_foo2.c,
tests/pdemo/longer_file_name_hell1.c,
tests/pdemo/longer_file_name_hell2.c,
tests/pdemo/longer_file_name_hello.c,
tests/pdemo/longer_file_name_main.c, tests/quote.test,
tests/recursive.at, tests/search-path.at, tests/sh.test,
tests/shlibpath.at, tests/standalone.at, tests/static.at,
tests/stresstest.at, tests/subproject.at, tests/suffix.test,
tests/tagdemo-conf.test, tests/tagdemo-exec.test,
tests/tagdemo-make.test, tests/tagdemo-shared.test,
tests/tagdemo-static.test, tests/tagdemo-undef.test,
tests/tagdemo/Makefile.am, tests/tagdemo/baz.cpp,
tests/tagdemo/baz.h, tests/tagdemo/configure.ac,
tests/tagdemo/conv.cpp, tests/tagdemo/conv.h,
tests/tagdemo/foo.cpp, tests/tagdemo/foo.h,
tests/tagdemo/main.cpp, tests/tagtrace.test,
tests/template.at, tests/testsuite.at: Apply correct license
text according to the new rules set out in HACKING.
2007-03-25 20:12:44 +08:00
|
|
|
This file is part of GNU Libtool.
|
2004-08-29 00:15:23 +08:00
|
|
|
|
Simplify license variations, and add missing license texts.
* ChangeLog, ChangeLog.1996, ChangeLog.1997, ChangeLog.1998,
ChangeLog.1999, ChangeLog.2000, ChangeLog.2001, ChangeLog.2002,
ChangeLog.2003, ChangeLog.2004, ChangeLog.2005, ChangeLog.2006,
ChangeLog.2007, ChangeLog.2008, ChangeLog.2009, NEWS: Add
all-permissive license.
* HACKING, README, README.alpha, TODO: Relax license to RMS
encouraged all-permissive terms.
* libltdl/README: Ditto. I added the original license text in
2007, and there's no need for it to be so long for such a trivial
file.
* libltdl/config/getopt.m4sh, libltdl/general.m4sh: Cvs-utils is
dead, and I am the author of these files, so consolidated license
terms to match regular Libtool licensing.
* HACKING (Licensing Rules): Update wording, and list of files for
the all permissive license.
(GPL with CVS-Utils exception clause): Removed. No files have these
license any more.
(GPL with Libtool exception clause): Ditto, only libltdl/README
used to be distributed with this variation.
* AUTHORS: Add GPL license text.
2010-06-09 20:00:19 +08:00
|
|
|
Copying and distribution of this file, with or without modification,
|
|
|
|
are permitted in any medium without royalty provided the copyright
|
|
|
|
notice and this notice are preserved. This file is offered as-is,
|
|
|
|
without warranty of any kind.
|
2004-08-29 00:15:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
mode: text
|
|
|
|
fill-column: 72
|
|
|
|
End:
|
2006-01-31 04:09:41 +08:00
|
|
|
vim:tw=72
|