diff options
author | Theodore Ts'o <tytso@mit.edu> | 2002-06-25 23:26:34 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2002-06-25 23:26:34 -0400 |
commit | 8fdc9985c1e2a4467630b33719b7feb281b7b33b (patch) | |
tree | 62568b09c49c9df3d49fe5e3cec0f6b6b446695e /configure.in | |
parent | 88372d5c4b2ebd0405446b42de65bf2b0ebb2408 (diff) | |
download | e2fsprogs-8fdc9985c1e2a4467630b33719b7feb281b7b33b.tar.gz |
Add initial support for htree directories.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/configure.in b/configure.in index cc8d5850..cfad88ea 100644 --- a/configure.in +++ b/configure.in @@ -125,6 +125,45 @@ fi echo "Disabling compression support by default" ) dnl +dnl handle --enable-htree +dnl +AC_ARG_ENABLE([htree], +[ --enable-htree enable EXPERIMENTAL htree directory support], +if test "$enableval" = "no" +then + HTREE_CMT=# + echo "Disabling htree directory support" +else + HTREE_CMT= + AC_DEFINE(ENABLE_HTREE) + echo "Enabling htree directory support" + echo "WARNING: htree support is experimental" +fi +, +HTREE_CMT=# +echo "Disabling htree directory support by default" +) +AC_SUBST(HTREE_CMT) +dnl +dnl handle --enable-clear-htree +dnl +AC_ARG_ENABLE([htree-clear], +[ --enable-htree-clear clear htree because we don't trust e2fsck], +if test "$enableval" = "no" +then + HTREE_CLR_CMT=# + echo "Disabling htree clearing" +else + HTREE_CLR_CMT= + AC_DEFINE(ENABLE_HTREE_CLEAR) + echo "Enabling htree clearing" +fi +, +HTREE_CLR_CMT=# +echo "Disabling htree clearing by default" +) +AC_SUBST(HTREE_CLR_CMT) +dnl dnl handle --enable-old-evms dnl AC_ARG_ENABLE([old-evms], |