mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-21 01:40:57 +08:00
* tests/lt_dladvise.at, tests/lt_dlexit.at,
tests/need_lib_prefix.at: Skip these tests when called from `make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-ltdl-install'. The tests try to link against the dummy installed libltdl.la from .../_inst/lib/libltdl.la, which does not exist when configured with --disable-ltdl-install.
This commit is contained in:
parent
50abf984fb
commit
ec47998b3c
@ -1,3 +1,12 @@
|
||||
2008-03-01 Gary V. Vaughan <gary@gnu.org>
|
||||
|
||||
* tests/lt_dladvise.at, tests/lt_dlexit.at,
|
||||
tests/need_lib_prefix.at: Skip these tests when called from
|
||||
`make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-ltdl-install'.
|
||||
The tests try to link against the dummy installed libltdl.la
|
||||
from .../_inst/lib/libltdl.la, which does not exist when
|
||||
configured with --disable-ltdl-install.
|
||||
|
||||
2008-02-29 Gary V. Vaughan <gary@gnu.org>
|
||||
|
||||
* libltdl/m4/argz.m4 (AC_CHECK_FUNCS): Also use our replacement
|
||||
|
@ -267,6 +267,12 @@ depend: 5
|
||||
: ${LTDLINCL="-I$abs_top_srcdir/libltdl"}
|
||||
: ${LIBLTDL="$abs_builddir/../libltdl/libltdlc.la"}
|
||||
|
||||
# Skip this test when called from:
|
||||
# make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-ltdl-install
|
||||
AT_CHECK([case $LIBLTDL in #(
|
||||
*/_inst/lib/*) test -f $LIBLTDL || (exit 77) ;;
|
||||
esac], [], [ignore])
|
||||
|
||||
CPPFLAGS="$LTDLINCL $CPPFLAGS"
|
||||
|
||||
dlopenable='resident local global'
|
||||
|
@ -116,9 +116,16 @@ int vb1 = 3;
|
||||
#endif
|
||||
]])
|
||||
|
||||
|
||||
: ${LTDLINCL="-I$abs_top_srcdir/libltdl"}
|
||||
: ${LIBLTDL="$abs_builddir/../libltdl/libltdlc.la"}
|
||||
|
||||
# Skip this test when called from:
|
||||
# make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-ltdl-install
|
||||
AT_CHECK([case $LIBLTDL in #(
|
||||
*/_inst/lib/*) test -f $LIBLTDL || (exit 77) ;;
|
||||
esac], [], [ignore])
|
||||
|
||||
CPPFLAGS="$LTDLINCL $CPPFLAGS"
|
||||
LDFLAGS="$LDFLAGS -no-undefined"
|
||||
|
||||
|
@ -139,6 +139,12 @@ libfoo2: 3
|
||||
: ${LTDLINCL="-I$abs_top_srcdir/libltdl"}
|
||||
: ${LIBLTDL="$abs_builddir/../libltdl/libltdlc.la"}
|
||||
|
||||
# Skip this test when called from:
|
||||
# make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-ltdl-install
|
||||
AT_CHECK([case $LIBLTDL in #(
|
||||
*/_inst/lib/*) test -f $LIBLTDL || (exit 77) ;;
|
||||
esac], [], [ignore])
|
||||
|
||||
CPPFLAGS="$LTDLINCL $CPPFLAGS"
|
||||
LDFLAGS="$LDFLAGS"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user