mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-12-27 07:09:26 +08:00
a5f6b87d4a
* demo/configure.in: likewise * depdemo/configure.in: likewise * libltdl/configure.in: likewise * mdemo/configure.in: likewise * libltdl/ltdl.c: in find_module() check whether libdir is defined, tryall_dlopen(): move deallocation of an already opened handle to lt_dlopen(), allocate the directory in lt_dlopen() dynamically, minor cleanups, fixed memory leak (name) * libtool.m4: renamed all AM_ macros to AC_ and added aliases for compatibilty, updated AC_SYS_NM_PARSE (no undefined symbols, don't count the symbols) * ltconfig.in: added thread_safe_flag_spec (not used yet), added generic variable for linker options "linkopts" in all archive_cmds * ltmain.in: added -thread-safe flag (unused) |
||
---|---|---|
.. | ||
.cvsignore | ||
configure.in | ||
l1.c | ||
l1.h | ||
l2.c | ||
l2.h | ||
l3.c | ||
l3.h | ||
l4.c | ||
l4.h | ||
main.c | ||
Makefile.am | ||
README | ||
sysdep.h |
This is depdemo, an example package that uses GNU libtool with an Automake-generated environment to build many interdependent libraries and a test program. There are four libraries: l1, l2, l3 and l4. l1 depends on nothing. l2 depends on l1. l3 depends on l1 and l2. l4 depends on l3 and libm. The test program uses l1, l2 and l4.