1
0
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:
Alasdair Kergon 2009-07-30 12:25:42 +00:00
parent 9b6f239159
commit 82c445b01d
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.51 -
================================
Fix configure script to handle multiple clvmd selections.
Fix lvm2app.pc installation filename.
Remove pv_t, vg_t & lv_t handles from lib. Only liblvm uses them.
Rename lvm.h to lvm2app.h for now.

2
configure vendored
View File

@ -9190,7 +9190,7 @@ if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
CLUSTER=internal
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

View File

@ -340,7 +340,7 @@ if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
fi
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, [],
[AC_MSG_RESULT([no pkg for quorum library, using -lquorum]);
QUORUM_LIBS="-lquorum"])