mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +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
|
Version 2.00.32 - 22nd December 2004
|
||||||
====================================
|
====================================
|
||||||
|
Drop static/dl restriction for now.
|
||||||
Fix an error fprintf.
|
Fix an error fprintf.
|
||||||
Fix vgdisplay -s. Breaks (undocumented) lvs/pvs/vgs -s instead for now.
|
Fix vgdisplay -s. Breaks (undocumented) lvs/pvs/vgs -s instead for now.
|
||||||
Fix device reference counting on re-opens.
|
Fix device reference counting on re-opens.
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -7524,7 +7524,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [ "x$HAVE_LIBDL" = xyes -a "x$STATIC_LINK" = xno ]; then
|
if [ "x$HAVE_LIBDL" = xyes ]; then
|
||||||
CFLAGS="$CFLAGS -DHAVE_LIBDL"
|
CFLAGS="$CFLAGS -DHAVE_LIBDL"
|
||||||
LIBS="-ldl $LIBS"
|
LIBS="-ldl $LIBS"
|
||||||
else
|
else
|
||||||
|
@ -389,7 +389,7 @@ fi
|
|||||||
dnl -- Check for dlopen
|
dnl -- Check for dlopen
|
||||||
AC_CHECK_LIB(dl, dlopen, HAVE_LIBDL=yes, HAVE_LIBDL=no)
|
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"
|
CFLAGS="$CFLAGS -DHAVE_LIBDL"
|
||||||
LIBS="-ldl $LIBS"
|
LIBS="-ldl $LIBS"
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user