1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Drop static/dl config restriction for now.

This commit is contained in:
Alasdair Kergon 2004-12-22 21:55:36 +00:00
parent c0c6850bc0
commit 7e9e95024a
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
Version 2.00.32 - 22nd December 2004
====================================
Drop static/dl restriction for now.
Fix an error fprintf.
Fix vgdisplay -s. Breaks (undocumented) lvs/pvs/vgs -s instead for now.
Fix device reference counting on re-opens.

2
configure vendored
View File

@ -7524,7 +7524,7 @@ else
fi
if [ "x$HAVE_LIBDL" = xyes -a "x$STATIC_LINK" = xno ]; then
if [ "x$HAVE_LIBDL" = xyes ]; then
CFLAGS="$CFLAGS -DHAVE_LIBDL"
LIBS="-ldl $LIBS"
else

View File

@ -389,7 +389,7 @@ fi
dnl -- Check for dlopen
AC_CHECK_LIB(dl, dlopen, HAVE_LIBDL=yes, HAVE_LIBDL=no)
if [[ "x$HAVE_LIBDL" = xyes -a "x$STATIC_LINK" = xno ]]; then
if [[ "x$HAVE_LIBDL" = xyes ]]; then
CFLAGS="$CFLAGS -DHAVE_LIBDL"
LIBS="-ldl $LIBS"
else