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:
parent
c0c6850bc0
commit
7e9e95024a
@ -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
2
configure
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user