From: Derrick Brashear Date: Sat, 21 Jul 2001 17:39:58 +0000 (+0000) Subject: configure-allow-enabling-vos-full-listvol-switch-20010721 X-Git-Tag: BP-openafs-stable-1_2_x~80 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=de296c6546c2a3ce8bf562716b97abf295644412;p=packages%2Fo%2Fopenafs.git configure-allow-enabling-vos-full-listvol-switch-20010721 enable switch for new feature --- diff --git a/acconfig.h b/acconfig.h index 395c77a26..9625123b8 100644 --- a/acconfig.h +++ b/acconfig.h @@ -22,10 +22,11 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } #undef AFS_AFSDB_ENV #undef AFS_NAMEI_ENV -#undef BOS_RESTRICTED_MODE -#undef FAST_RESTART #undef BITMAP_LATER +#undef BOS_RESTRICTED_MODE +#undef FAST_RESTART +#undef FULL_LISTVOL_SWITCH #undef INODE_SETATTR_NOT_VOID #undef STRUCT_INODE_HAS_I_BYTES diff --git a/configure.in b/configure.in index 75efd0265..67286e89d 100644 --- a/configure.in +++ b/configure.in @@ -21,6 +21,8 @@ AC_ARG_ENABLE( fast-restart, [ --enable-fast-restart enable fast startup of file server without salvaging],, enable_fast_restart="no") AC_ARG_ENABLE( bitmap-later, [ --enable-bitmap-later enable fast startup of file server by not reading bitmap till needed],, enable_bitmap_later="no") +AC_ARG_ENABLE( full-vos-listvol-switch, +[ --enable-full-vos-listvol-switch enable vos full listvol switch for formatted output],, enable_full_vos_listvol_switch="no") AC_ARG_WITH(dux-kernel-headers, [ --with-dux-kernel-headers=path use the kernel headers found at path(optional, defaults to first match in /usr/sys)] ) @@ -333,6 +335,10 @@ if test "$enable_bitmap_later" = "yes"; then AC_DEFINE(BITMAP_LATER) fi +if test "$enable_full_vos_listvol_switch" = "yes"; then + AC_DEFINE(FULL_LISTVOL_SWITCH) +fi + if test "$enable_bos_restricted_mode" = "yes"; then AC_DEFINE(BOS_RESTRICTED_MODE) fi