X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=config.h.in;h=126df1e9d3888d0b73fe82e3275615006355228e;hp=f4af89cd4f94662e05cfae0c09511763b8d6c619;hb=fc9c62aae0a7ebf1ff9335e322e7c1f5d3e459d3;hpb=6e0187ce721be4997bef32d724528f8976df89d6 diff --git a/config.h.in b/config.h.in index f4af89c..126df1e 100644 --- a/config.h.in +++ b/config.h.in @@ -2,12 +2,8 @@ /* Compiling with newsreading support with NNTP */ #undef USE_NNTP - -/* program to use for shell commands */ -#define EXECSHELL "/bin/sh" - -/* Define to `int' if doesn't define. */ -#undef sig_atomic_t +/* The compressed mailboxes support */ +#undef USE_COMPRESSED /* Define to enable the "buffy_size" feature. */ @@ -24,6 +20,9 @@ /* Define if you want clasic S/MIME support. */ #undef CRYPT_BACKEND_CLASSIC_SMIME +/* Defined, if GPGME support is enabled */ +#undef CRYPT_BACKEND_GPGME + /* Define to 1 if using `alloca.c'. */ #undef C_ALLOCA @@ -60,9 +59,21 @@ /* Define to 1 if you have the `bind_textdomain_codeset' function. */ #undef HAVE_BIND_TEXTDOMAIN_CODESET +/* Define if you have bkgdset, as a function or macro. */ +#undef HAVE_BKGDSET + +/* Define if you have the C99 integer types */ +#undef HAVE_C99_INTTYPES + /* Define if your curses library supports color. */ #undef HAVE_COLOR +/* Define if you have curs_set, as a function or macro. */ +#undef HAVE_CURS_SET + +/* Sleepycat DB4 Support */ +#undef HAVE_DB4 + /* Define to 1 if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT @@ -85,6 +96,9 @@ /* Define to 1 if you have the `ftruncate' function. */ #undef HAVE_FTRUNCATE +/* GDBM Support */ +#undef HAVE_GDBM + /* Define to 1 if you have the `getaddrinfo' function. */ #undef HAVE_GETADDRINFO @@ -115,6 +129,9 @@ /* Define to 1 if you have the `getuid' function. */ #undef HAVE_GETUID +/* Define to 1 if you have the header file. */ +#undef HAVE_GNUTLS_OPENSSL_H + /* Define if your GSSAPI implementation is Heimdal */ #undef HAVE_HEIMDAL @@ -151,6 +168,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_IOCTL_H +/* Define to 1 if you have the `isctype' function. */ +#undef HAVE_ISCTYPE + /* Define to 1 if you have the `iswalnum' function. */ #undef HAVE_ISWALNUM @@ -244,6 +264,9 @@ /* Define to 1 if you have the `mempcpy' function. */ #undef HAVE_MEMPCPY +/* Define if you have meta, as a function or macro. */ +#undef HAVE_META + /* Define to 1 if you have a working `mmap' system call. */ #undef HAVE_MMAP @@ -271,6 +294,9 @@ /* Define to 1 if you have the `regcomp' function. */ #undef HAVE_REGCOMP +/* Define if you have resizeterm, as a function or macro. */ +#undef HAVE_RESIZETERM + /* Define to 1 if you have the `setegid' function. */ #undef HAVE_SETEGID @@ -289,6 +315,9 @@ /* Define to 1 if you have the `srand48' function. */ #undef HAVE_SRAND48 +/* Define if you have start_color, as a function or macro. */ +#undef HAVE_START_COLOR + /* Define to 1 if you have the header file. */ #undef HAVE_STDARG_H @@ -358,8 +387,8 @@ /* Define to 1 if you have the `tsearch' function. */ #undef HAVE_TSEARCH -/* Define if you have the uint32_t type. */ -#undef HAVE_UINT32_T +/* Define if you have typeahead, as a function or macro. */ +#undef HAVE_TYPEAHEAD /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H @@ -367,6 +396,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNIX_H +/* Define if you have use_default_colors, as a function or macro. */ +#undef HAVE_USE_DEFAULT_COLORS + /* Define to 1 if you have the `vsnprintf' function. */ #undef HAVE_VSNPRINTF @@ -396,6 +428,10 @@ /* Define as const if the declaration of iconv() needs const. */ #undef ICONV_CONST +/* Define as 1 if iconv() only converts exactly and we should treat all return + values other than (size_t)(-1) as equivalent. */ +#undef ICONV_NONTRANS + /* Where to find ispell on your system. */ #undef ISPELL @@ -440,12 +476,23 @@ /* Where to find sendmail on your system. */ #undef SENDMAIL +/* Some systems declare sig_atomic_t as volatile, some others -- no. This + define will have value `sig_atomic_t' or `volatile sig_atomic_t' + accordingly. */ +#undef SIG_ATOMIC_VOLATILE_T + /* The size of a `int', as computed by sizeof. */ #undef SIZEOF_INT /* The size of a `long', as computed by sizeof. */ #undef SIZEOF_LONG +/* The size of a `long long', as computed by sizeof. */ +#undef SIZEOF_LONG_LONG + +/* 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. @@ -472,15 +519,24 @@ /* Define to use flock() to lock mailboxes. */ #undef USE_FLOCK +/* Define if you want support for SSL via the gnutls library. */ +#undef USE_GNUTLS + /* Define if you want to use the included regex.c. */ #undef USE_GNU_REGEX /* Define if you have GSSAPI libraries available */ #undef USE_GSS +/* Enable header caching */ +#undef USE_HCACHE + /* Define if you want support for the IMAP protocol. */ #undef USE_IMAP +/* Define to sort files in a maildir by inode number. */ +#undef USE_INODESORT + /* Define to enable the use of libesmtp */ #undef USE_LIBESMTP @@ -513,9 +569,29 @@ /* Version number of package */ #undef VERSION -/* Define to 1 if your processor stores words with the most significant byte - first (like Motorola and SPARC, unlike Intel and VAX). */ -#undef WORDS_BIGENDIAN +#ifndef HAVE_C99_INTTYPES +# if SIZEOF_SHORT == 4 +typedef unsigned short uint32_t; +# elif SIZEOF_INT == 4 +typedef unsigned int uint32_t; +# elif SIZEOF_LONG == 4 +typedef unsigned long uint32_t; +# endif +# if SIZEOF_INT == 8 +typedef unsigned int uint64_t; +# elif SIZEOF_LONG == 8 +typedef unsigned long uint64_t; +# elif SIZEOF_LONG_LONG == 8 +typedef unsigned long long uint64_t; +# endif +#endif + + +/* Number of bits in a file offset, on hosts where this is settable. */ +#undef _FILE_OFFSET_BITS + +/* Define for large files, on AIX-style hosts. */ +#undef _LARGE_FILES /* Define to empty if `const' does not conform to ANSI C. */ #undef const @@ -547,36 +623,3 @@ /* Define to 'int' if system headers don't define. */ #undef wint_t -/* Define if you have start_color, as a function or macro. */ -#undef HAVE_START_COLOR - -/* Define if you have typeahead, as a function or macro. */ -#undef HAVE_TYPEAHEAD - -/* Define if you have bkgdset, as a function or macro. */ -#undef HAVE_BKGDSET - -/* Define if you have curs_set, as a function or macro. */ -#undef HAVE_CURS_SET - -/* Define if you have meta, as a function or macro. */ -#undef HAVE_META - -/* Define if you have use_default_colors, as a function or macro. */ -#undef HAVE_USE_DEFAULT_COLORS - -/* Define if you have resizeterm, as a function or macro. */ -#undef HAVE_RESIZETERM - -/* Some systems declare sig_atomic_t as volatile, some others -- no. - * This define will have value `sig_atomic_t' or `volatile sig_atomic_t' - * accordingly. */ -#undef SIG_ATOMIC_VOLATILE_T - -/* Define as 1 if iconv() only converts exactly and we should treat - * all return values other than (size_t)(-1) as equivalent. */ -#undef ICONV_NONTRANS - -/* The compressed mailboxes support */ -#undef USE_COMPRESSED -