mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-02 01:18:26 +03:00
Fix configure script to handle multiple clvmd selections.
This commit is contained in:
parent
9b6f239159
commit
82c445b01d
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.51 -
|
Version 2.02.51 -
|
||||||
================================
|
================================
|
||||||
|
Fix configure script to handle multiple clvmd selections.
|
||||||
Fix lvm2app.pc installation filename.
|
Fix lvm2app.pc installation filename.
|
||||||
Remove pv_t, vg_t & lv_t handles from lib. Only liblvm uses them.
|
Remove pv_t, vg_t & lv_t handles from lib. Only liblvm uses them.
|
||||||
Rename lvm.h to lvm2app.h for now.
|
Rename lvm.h to lvm2app.h for now.
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -9190,7 +9190,7 @@ if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
|
|||||||
CLUSTER=internal
|
CLUSTER=internal
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "x$CLVMD" = xcorosync -o "x$CLVMD" = xall ]; then
|
if [ "x$CLVMD" = xall -o `expr x"$CLVMD" : '.*cman.*'` != 0 ]; then
|
||||||
|
|
||||||
|
|
||||||
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
||||||
|
@ -340,7 +340,7 @@ if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
dnl -- Look for corosync libraries if required.
|
dnl -- Look for corosync libraries if required.
|
||||||
if [[ "x$CLVMD" = xcorosync -o "x$CLVMD" = xall ]]; then
|
if [[ "x$CLVMD" = xall -o `expr x"$CLVMD" : '.*cman.*'` != 0 ]]; then
|
||||||
PKG_CHECK_MODULES(QUORUM, libquorum, [],
|
PKG_CHECK_MODULES(QUORUM, libquorum, [],
|
||||||
[AC_MSG_RESULT([no pkg for quorum library, using -lquorum]);
|
[AC_MSG_RESULT([no pkg for quorum library, using -lquorum]);
|
||||||
QUORUM_LIBS="-lquorum"])
|
QUORUM_LIBS="-lquorum"])
|
||||||
|
Loading…
Reference in New Issue
Block a user