X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=config.h.in;h=98085cac4f5393a1e01fc7944af6518c98ecd347;hp=c8e40f586f27cf80c67aca825143af2939c9e8d3;hb=4b1dc0d42a3165db9201ba40af9ad041f33333a5;hpb=f404a0ca916be07049af51a3022baaaaab94def6 diff --git a/config.h.in b/config.h.in index c8e40f5..98085ca 100644 --- a/config.h.in +++ b/config.h.in @@ -5,7 +5,6 @@ /* The compressed mailboxes support */ #undef USE_COMPRESSED - /* Define to enable the "buffy_size" feature. */ #undef BUFFY_SIZE @@ -39,10 +38,6 @@ language is requested. */ #undef ENABLE_NLS -/* Enable exact regeneration of email addresses as parsed? NOTE: this requires - significant more memory when defined. */ -#undef EXACT_ADDRESS - /* program to use for shell commands */ #undef EXECSHELL @@ -77,6 +72,10 @@ /* Define to 1 if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT +/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you + don't. */ +#undef HAVE_DECL_SYS_SIGLIST + /* Define to 1 if you have the `fchdir' function. */ #undef HAVE_FCHDIR @@ -89,6 +88,9 @@ /* 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 @@ -215,9 +217,6 @@ /* Define to 1 if you have the `esmtp' library (-lesmtp). */ #undef HAVE_LIBESMTP -/* Define to 1 if you have the `gnutls' library (-lgnutls). */ -#undef HAVE_LIBGNUTLS - /* Define to 1 if you have the `idn' library (-lidn). */ #undef HAVE_LIBIDN @@ -227,9 +226,6 @@ /* 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 @@ -278,12 +274,18 @@ /* 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 /* Define to 1 if you have the `putenv' function. */ #undef HAVE_PUTENV +/* QDBM Support */ +#undef HAVE_QDBM + /* Define to 1 if you have the `RAND_egd' function. */ #undef HAVE_RAND_EGD @@ -466,7 +468,7 @@ /* Define to the version of this package. */ #undef PACKAGE_VERSION -/* Define if compiler has function prototypes */ +/* Define to 1 if the C compiler supports function prototypes. */ #undef PROTOTYPES /* Define as the return type of signal handlers (`int' or `void'). */ @@ -489,29 +491,26 @@ /* 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 /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. - STACK_DIRECTION > 0 => grows toward higher addresses - STACK_DIRECTION < 0 => grows toward lower addresses - STACK_DIRECTION = 0 => direction of growth unknown */ + STACK_DIRECTION > 0 => grows toward higher addresses + STACK_DIRECTION < 0 => grows toward lower addresses + STACK_DIRECTION = 0 => direction of growth unknown */ #undef STACK_DIRECTION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS -/* Is this the international version? */ -#undef SUBVERSION - /* Define to enable Sun mailtool attachments support. */ #undef SUN_ATTACHMENT -/* Define to 1 if `sys_siglist' is declared by or . */ -#undef SYS_SIGLIST_DECLARED - /* Define to use dotlocking for mailboxes. */ #undef USE_DOTLOCK @@ -542,18 +541,11 @@ /* Define to enable the use of libesmtp */ #undef USE_LIBESMTP -/* Define if you want support for SSL via the NSS library. */ -#undef USE_NSS - /* Define if you want support for the POP3 protocol. */ #undef USE_POP -/* 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 +#undef USE_SASL /* Define if mutt should run setgid "mail". */ #undef USE_SETGID @@ -592,15 +584,23 @@ 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 +/* Define like PROTOTYPES; this can be used by system headers. */ +#undef __PROTOTYPES + /* Define to empty if `const' does not conform to ANSI C. */ #undef const -/* Define as `__inline' if that's what the C compiler calls it, or to nothing - if it is not supported. */ +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus #undef inline +#endif /* Define to 'int' if system headers don't define. */ #undef mbstate_t @@ -625,3 +625,19 @@ 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 +