1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +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. Display all filtered devices, not just PVs, with pvs -a.
Fix sync_dir() when no / in filename Fix sync_dir() when no / in filename
vgcfgbackup -f accepts template with %s for VG name. 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-devmapper Disable device-mapper interaction
--disable-o_direct Disable O_DIRECT --disable-o_direct Disable O_DIRECT
--enable-cmdlib Build shared command library --enable-cmdlib Build shared command library
--enable-fsadm Enable fsadm
--enable-nls Enable Native Language Support --enable-nls Enable Native Language Support
Optional Packages: Optional Packages:
@ -3899,7 +3900,7 @@ case "$host_os" in
SOFLAG="-shared" SOFLAG="-shared"
DEVMAPPER=yes DEVMAPPER=yes
ODIRECT=yes ODIRECT=yes
FSADM=yes ;; FSADM=no ;;
darwin*) darwin*)
CFLAGS="-no-cpp-precomp -fno-common" CFLAGS="-no-cpp-precomp -fno-common"
CLDFLAGS= CLDFLAGS=
@ -4122,6 +4123,14 @@ if test x$CMDLIB = xyes; then
CFLAGS="$CFLAGS -DCMDLIB" CFLAGS="$CFLAGS -DCMDLIB"
fi 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 ]; if [ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ];
then exec_prefix=""; then exec_prefix="";
fi; 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 Use of pvmove may cause machine to lock up under low memory conditions.
echo echo
fi 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" SOFLAG="-shared"
DEVMAPPER=yes DEVMAPPER=yes
ODIRECT=yes ODIRECT=yes
FSADM=yes ;; FSADM=no ;;
darwin*) darwin*)
CFLAGS="-no-cpp-precomp -fno-common" CFLAGS="-no-cpp-precomp -fno-common"
CLDFLAGS= CLDFLAGS=
@ -228,6 +228,11 @@ if test x$CMDLIB = xyes; then
CFLAGS="$CFLAGS -DCMDLIB" CFLAGS="$CFLAGS -DCMDLIB"
fi 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 dnl Mess with default exec_prefix
if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]]; if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]];
then exec_prefix=""; 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 Use of pvmove may cause machine to lock up under low memory conditions.
echo echo
fi fi
if test x$FSADM == xyes; then
echo
echo Warning: fsadm support is untested.
echo
fi