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

fsadm configurable (default disabled as untested)

version update
This commit is contained in:
Alasdair Kergon 2004-06-20 13:38:54 +00:00
parent c29d24650d
commit 809fae91cf
4 changed files with 32 additions and 5 deletions

View File

@ -1 +1 @@
2.00.16-cvs (2004-05-24)
2.00.17-cvs (2004-06-20)

View File

@ -1,5 +1,6 @@
Version 2.00.17 -
=============================
Version 2.00.17 - 20 June 2004
==============================
configure --enable-fsadm to try out fsadm. fsadm is not tested yet.
Display all filtered devices, not just PVs, with pvs -a.
Fix sync_dir() when no / in filename
vgcfgbackup -f accepts template with %s for VG name.

17
configure vendored
View File

@ -855,6 +855,7 @@ Optional Features:
--disable-devmapper Disable device-mapper interaction
--disable-o_direct Disable O_DIRECT
--enable-cmdlib Build shared command library
--enable-fsadm Enable fsadm
--enable-nls Enable Native Language Support
Optional Packages:
@ -3899,7 +3900,7 @@ case "$host_os" in
SOFLAG="-shared"
DEVMAPPER=yes
ODIRECT=yes
FSADM=yes ;;
FSADM=no ;;
darwin*)
CFLAGS="-no-cpp-precomp -fno-common"
CLDFLAGS=
@ -4122,6 +4123,14 @@ if test x$CMDLIB = xyes; then
CFLAGS="$CFLAGS -DCMDLIB"
fi
echo $ac_n "checking whether to enable fsadm""... $ac_c" 1>&6
# Check whether --enable-fsadm or --disable-fsadm was given.
if test "${enable_fsadm+set}" = set; then
enableval="$enable_fsadm"
FSADM=yes
fi;
echo "$ac_t""$FSADM" 1>&6
if [ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ];
then exec_prefix="";
fi;
@ -6152,3 +6161,9 @@ if test x$ODIRECT != xyes; then
echo Use of pvmove may cause machine to lock up under low memory conditions.
echo
fi
if test x$FSADM == xyes; then
echo
echo Warning: fsadm support is untested.
echo
fi

View File

@ -59,7 +59,7 @@ case "$host_os" in
SOFLAG="-shared"
DEVMAPPER=yes
ODIRECT=yes
FSADM=yes ;;
FSADM=no ;;
darwin*)
CFLAGS="-no-cpp-precomp -fno-common"
CLDFLAGS=
@ -228,6 +228,11 @@ if test x$CMDLIB = xyes; then
CFLAGS="$CFLAGS -DCMDLIB"
fi
echo $ac_n "checking whether to enable fsadm""... $ac_c" 1>&6
dnl Enable fsadm
AC_ARG_ENABLE(fsadm, [ --enable-fsadm Enable fsadm], FSADM=yes)
echo "$ac_t""$FSADM" 1>&6
dnl Mess with default exec_prefix
if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]];
then exec_prefix="";
@ -404,3 +409,9 @@ if test x$ODIRECT != xyes; then
echo Use of pvmove may cause machine to lock up under low memory conditions.
echo
fi
if test x$FSADM == xyes; then
echo
echo Warning: fsadm support is untested.
echo
fi