mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-17 15:10:02 +08:00
* tests/build-relink.test: if we relink and have hardcode_direct,
removing an uninstalled library breaks an uninstalled program
This commit is contained in:
parent
4e706e6325
commit
50e3b8b1db
@ -1,10 +1,11 @@
|
||||
1999-03-21 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
||||
* tests/build-relink.test: if we relink and have hardcode_direct,
|
||||
removing an uninstalled library breaks an uninstalled program
|
||||
|
||||
* doc/libtool.texi: documented convenience libraries
|
||||
* TODO: removed entry about it
|
||||
|
||||
1999-03-21 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
||||
* tests/*-unst.test: if directory is not configured, skip it
|
||||
* tests/demo.test, tests/mdemo.test: unused, removed
|
||||
* tests/depdemo.test: ditto
|
||||
|
@ -11,12 +11,24 @@ fi
|
||||
. $srcdir/defs || exit 1
|
||||
|
||||
# Check that things are built.
|
||||
if test -f $prefix/lib/libhello.la && cd ../demo; then :
|
||||
if test -f $prefix/lib/libhello.la && cd ../demo && test -f libhello.la; then :
|
||||
else
|
||||
echo "You must run demo-inst.test before $0" 1>&2
|
||||
exit 77
|
||||
fi
|
||||
|
||||
# Check to make sure we have a dynamic library.
|
||||
library_names=NONE
|
||||
eval `egrep -e '^library_names=' ./libhello.la 2>/dev/null`
|
||||
|
||||
if test "$library_names" = NONE; then
|
||||
echo "library_names not set in ../demo/libhello.la" 1>&2
|
||||
exit 1
|
||||
elif test -z "$library_names"; then
|
||||
echo "= Exiting: ../demo/libhello.la is not a shared library"
|
||||
exit 77
|
||||
fi
|
||||
|
||||
# Unfortunately, we need access to libtool internals for this test.
|
||||
objdir=NONE
|
||||
eval `egrep -e '^objdir=' ./libtool 2>/dev/null`
|
||||
@ -32,16 +44,18 @@ if test "$shlibpath_overrides_runpath" = NONE; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Check to make sure we have a dynamic library.
|
||||
library_names=NONE
|
||||
eval `egrep -e '^library_names=' ./libhello.la 2>/dev/null`
|
||||
|
||||
if test "$library_names" = NONE; then
|
||||
echo "library_names not set in ../demo/libhello.la" 1>&2
|
||||
hardcode_action=NONE
|
||||
eval `egrep -e '^hardcode_action=' ./libtool 2>/dev/null`
|
||||
if test "$hardcode_action" = NONE; then
|
||||
echo "hardcode_action not set in ../demo/libtool" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
hardcode_direct=NONE
|
||||
eval `egrep -e '^hardcode_direct=' ./libtool 2>/dev/null`
|
||||
if test "$hardcode_direct" = NONE; then
|
||||
echo "hardcode_direct not set in ../demo/libtool" 1>&2
|
||||
exit 1
|
||||
elif test -z "$library_names"; then
|
||||
echo "= Exiting: ../demo/libhello.la is not a shared library"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
./hell # so that it links on-demand if needed
|
||||
@ -52,6 +66,9 @@ rm -f libhello.la $objdir/libhello.*
|
||||
echo "running ../demo/hell"
|
||||
if ./hell; then
|
||||
:
|
||||
elif test "x,$hardcode_action,$hardcode_direct" = x,relink,yes; then
|
||||
echo "Ok, uninstalled programs fail after uninstalled libraries are removed"
|
||||
echo "This works in other configurations, but not in this particular one"
|
||||
else
|
||||
echo "= Exiting: ../demo/hell does not run, maybe libhello was not installed"
|
||||
exit 1
|
||||
@ -75,7 +92,7 @@ else
|
||||
echo "Failed, as expected"
|
||||
fi
|
||||
|
||||
if egrep -e '^hardcode_action=relink$' ./libtool > /dev/null 2>&1; then
|
||||
if test "x$hardcode_action" = xrelink; then
|
||||
echo "= Exiting: install-time relinking is required"
|
||||
exit 0
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user