X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=configure.in;h=705402dae0de90181f852bec4cec20bbf11fe718;hp=4ef4a1d8e1f0a65285c36f108806a033adceb2f0;hb=c25bc063f35aaad6938c2022dae7a283346c2769;hpb=c8becc4d099cee8c18ebd967720ce7204311d817 diff --git a/configure.in b/configure.in index 4ef4a1d..705402d 100644 --- a/configure.in +++ b/configure.in @@ -87,21 +87,6 @@ AH_TEMPLATE([ICONV_NONTRANS], [Define as 1 if iconv() only converts exactly and we should treat all return values other than (size_t)(-1) as equivalent.]) -AH_BOTTOM([/* fseeko portability defines */ -#ifdef HAVE_FSEEKO -# define LOFF_T off_t -# if SIZEOF_OFF_T == 8 -# define OFF_T_FMT "%lld" -# else -# define OFF_T_FMT "%ld" -# endif -#else -# define LOFF_T long -# define fseeko fseek -# define ftello ftell -# define OFF_T_FMT "%ld" -#endif -]) MUTT_C99_INTTYPES ac_aux_path_sendmail=/usr/sbin:/usr/lib @@ -532,7 +517,7 @@ AM_CONDITIONAL(BUILD_IMAP, test x$need_imap = xyes) AC_ARG_ENABLE(nntp, [ --enable-nntp Enable NNTP support], [ if test x$enableval = xyes ; then - AC_DEFINE(USE_NNTP) + AC_DEFINE(USE_NNTP,1,[ Compiling with newsreading support with NNTP ]) LIBNNTP="-Lnntp -lnntp" LIBNNTPDEPS="\$(top_srcdir)/nntp/nntp.h nntp/libnntp.a" need_nntp="yes" @@ -714,11 +699,20 @@ if test $mutt_cv_fcntl = yes; then AC_DEFINE(USE_FCNTL,1, [ Define to use fcntl() to lock folders. ]) fi +AC_MSG_CHECKING(whether struct dirent defines d_ino) +ac_cv_dirent_d_ino=no +AC_TRY_LINK([#include ],[struct dirent dp; (void)dp.d_ino],[ac_cv_dirent_d_ino=yes]) +if test x$ac_cv_dirent_d_ino = xyes ; then + AC_DEFINE(HAVE_DIRENT_D_INO,1, + [Define to 1 if your system has the dirent::d_ino member]) +fi +AC_MSG_RESULT($ac_cv_dirent_d_ino) + 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, AC_HELP_STRING([--enable-inodesort], [Read files in maildir folders sorted by inode.]), - [if test x$enableval = xyes ; then mutt_cv_inodesort=yes; fi]) + [if test x$enableval = xyes -a x$ac_cv_dirent_d_ino = 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. ]) @@ -754,7 +748,7 @@ AC_ARG_ENABLE(mailtool, AC_HELP_STRING([--enable-mailtool], [Enable Sun mailtool AC_ARG_ENABLE(compressed, [ --enable-compressed Enable compressed folders support ], [if test x$enableval = xyes; then - AC_DEFINE(USE_COMPRESSED) + AC_DEFINE(USE_COMPRESSED,1,[ The compressed mailboxes support ]) fi]) AC_ARG_ENABLE(locales-fix, AC_HELP_STRING([--enable-locales-fix], [The result of isprint() is unreliable ]),