* ltmain.in (installed): new variable defined within a .la file,

so that libtool can now link already-installed libraries into a
	program.
	* NEWS: ditto
	* doc/libtool.texi (Linking executables): document it
This commit is contained in:
Alexandre Oliva 1998-11-19 19:57:33 +00:00 committed by Alexandre Oliva
parent cc297c844f
commit 6dee8297df
4 changed files with 24 additions and 1 deletions

View File

@ -1,3 +1,9 @@
1998-11-19 Alexandre Oliva <oliva@dcc.unicamp.br>
* mdemo-inst.test (libltdl): install it
* mdemo-unst.test (libltdl): uninstall it
* Makefile.am (TESTS): list ltdl-unst.test before mdemo-conf.test
1998-11-07 Alexandre Oliva <oliva@dcc.unicamp.br>
* sh.test (test X): ensure that the double-quote supposed to be

View File

@ -5,8 +5,9 @@ AUTOMAKE_OPTIONS = gnits
TESTS = demo-conf.test demo-make.test demo-exec.test \
demo-inst.test demo-unst.test hardcode.test \
ltdl-conf.test ltdl-make.test ltdl-inst.test \
ltdl-unst.test \
mdemo-conf.test mdemo-make.test mdemo-exec.test \
mdemo-inst.test mdemo-unst.test ltdl-unst.test \
mdemo-inst.test mdemo-unst.test \
link.test link-2.test nomode.test \
quote.test sh.test suffix.test

View File

@ -17,6 +17,16 @@ else
exit 1
fi
# Check that ltdl is installed.
if test -f ../libltdl/libltdl.la; then
cd ../libltdl || exit 1
echo "= Running $make install in ../libltdl"
$make install || exit 1
else
echo "You must run ltdl-make.test before $0" 1>&2
exit 1
fi
# Change to our build directory.
cd ../mdemo || exit 1

View File

@ -17,6 +17,12 @@ else
exit 1
fi
if test -f ../libltdl/libltdl.la; then
cd ../libltdl || exit 1
echo "= Running $make uninstall in ../libltdl"
$make uninstall || exit 1
fi
# Change to our build directory.
cd ../mdemo || exit 1