]> granicus.if.org Git - neomutt/commitdiff
Give people more time to profile the inode sorting code; disabled by
authorThomas Roessler <roessler@does-not-exist.org>
Sat, 12 Feb 2005 20:20:42 +0000 (20:20 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sat, 12 Feb 2005 20:20:42 +0000 (20:20 +0000)
default for now.

configure.in

index 8cb4f8eaccde2fa99d4751b872669e98447e31ed..d76eb5af38545c9b93063e628c870698dedb95ad 100644 (file)
@@ -733,9 +733,11 @@ if test $mutt_cv_fcntl = yes; then
         AC_DEFINE(USE_FCNTL,1, [ Define to use fcntl() to lock folders. ])
 fi
 
-mutt_cv_inodesort=yes
-AC_ARG_ENABLE(inodesort,  [   --disable-inodesort      Do NOT read files in maildir folders sorted by inode. ],
-       [if test $enableval = no ; then mutt_cv_inodesort=no; fi])
+dnl This may look cumbersome -- please keep it that way, so we can
+dnl quickly change the default to "yes" again.
+mutt_cv_inodesort=no
+AC_ARG_ENABLE(inodesort,  [   --enable-inodesort       Read files in maildir folders sorted by inode. ],
+       [if test x$enableval = xyes ; then mutt_cv_inodesort=yes; fi])
 
 if test $mutt_cv_inodesort = yes; then
        AC_DEFINE(USE_INODESORT, 1, [ Define to sort files in a maildir by inode number. ])