X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=config.h.in;h=e4802a06eb2e2359ece935234953563114b207ea;hp=98085cac4f5393a1e01fc7944af6518c98ecd347;hb=ccc32b06bb266419be820fb17af389e92ad4d195;hpb=4b1dc0d42a3165db9201ba40af9ad041f33333a5 diff --git a/config.h.in b/config.h.in index 98085ca..e4802a0 100644 --- a/config.h.in +++ b/config.h.in @@ -88,9 +88,6 @@ /* Define to 1 if you have the `fgets_unlocked' function. */ #undef HAVE_FGETS_UNLOCKED -/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ -#undef HAVE_FSEEKO - /* Define to 1 if you have the `ftruncate' function. */ #undef HAVE_FTRUNCATE @@ -226,6 +223,9 @@ /* Define to 1 if you have the `nsl' library (-lnsl). */ #undef HAVE_LIBNSL +/* Define to 1 if you have the `sasl' library (-lsasl). */ +#undef HAVE_LIBSASL + /* Define to 1 if you have the `sasl2' library (-lsasl2). */ #undef HAVE_LIBSASL2 @@ -274,9 +274,6 @@ /* Define to 1 if you have the header file. */ #undef HAVE_NCURSES_H -/* Define to 1 if you have the header file. */ -#undef HAVE_NCURSES_NCURSES_H - /* Define to 1 if you have the header file. */ #undef HAVE_NL_TYPES_H @@ -491,9 +488,6 @@ /* The size of a `long long', as computed by sizeof. */ #undef SIZEOF_LONG_LONG -/* The size of a `off_t', as computed by sizeof. */ -#undef SIZEOF_OFF_T - /* The size of a `short', as computed by sizeof. */ #undef SIZEOF_SHORT @@ -544,9 +538,13 @@ /* Define if you want support for the POP3 protocol. */ #undef USE_POP -/* Define if want to use version 2 of the Cyrus SASL library. */ +/* Define if want to use the Cyrus SASL library for POP/IMAP authentication. + */ #undef USE_SASL +/* Define if want to use version 2 of the Cyrus SASL library. */ +#undef USE_SASL2 + /* Define if mutt should run setgid "mail". */ #undef USE_SETGID @@ -584,9 +582,6 @@ typedef unsigned long long uint64_t; /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS -/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ -#undef _LARGEFILE_SOURCE - /* Define for large files, on AIX-style hosts. */ #undef _LARGE_FILES @@ -625,19 +620,3 @@ typedef unsigned long long uint64_t; /* Define to 'int' if system headers don't define. */ #undef wint_t - -/* 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 -