xref: /freebsd/contrib/diff/config.h (revision 7954ad9f22b3b453c4cea49dc663e7b17631a209)
13070b401SXin LI /* config.h.  Generated by configure.  */
23070b401SXin LI /* config.hin.  Generated from configure.ac by autoheader.  */
353ba4fe6SAndrey A. Chernov 
43070b401SXin LI /* $FreeBSD$ */
553ba4fe6SAndrey A. Chernov 
63070b401SXin LI /* Define to 1 if the `closedir' function returns void instead of `int'. */
753ba4fe6SAndrey A. Chernov /* #undef CLOSEDIR_VOID */
853ba4fe6SAndrey A. Chernov 
93070b401SXin LI /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
103070b401SXin LI    systems. This function is required for `alloca.c' support on those systems.
113070b401SXin LI    */
1253ba4fe6SAndrey A. Chernov /* #undef CRAY_STACKSEG_END */
1353ba4fe6SAndrey A. Chernov 
143070b401SXin LI /* Define to 1 if using `alloca.c'. */
153070b401SXin LI /* #undef C_ALLOCA */
163070b401SXin LI 
173070b401SXin LI /* Name of editor program, unless overridden. */
183070b401SXin LI #define DEFAULT_EDITOR_PROGRAM "/usr/bin/vi"
193070b401SXin LI 
203070b401SXin LI /* Define the default level of POSIX conformance. The value is of the form
213070b401SXin LI    YYYYMM, specifying the year and month the standard was adopted. If not
223070b401SXin LI    defined here, it defaults to the value of _POSIX2_VERSION in <unistd.h>.
233070b401SXin LI    Define to 199209 to default to POSIX 1003.2-1992, which makes standard
243070b401SXin LI    programs like `head', `tail', and `sort' accept obsolete options like `+10'
253070b401SXin LI    and `-10'. Define to 200112 to default to POSIX 1003.1-2001, which makes
263070b401SXin LI    these standard programs treat leading-`+' operands as file names and
273070b401SXin LI    require modern usages like `-n 10' instead of `-10'. Whether defined here
283070b401SXin LI    or not, the default can be overridden at run time via the _POSIX2_VERSION
293070b401SXin LI    environment variable. */
303070b401SXin LI /* #undef DEFAULT_POSIX2_VERSION */
313070b401SXin LI 
323070b401SXin LI /* Define to 1 if translation of program messages to the user's native
333070b401SXin LI    language is requested. */
343070b401SXin LI #define ENABLE_NLS 0
353070b401SXin LI 
363070b401SXin LI /* Define on systems for which file names may have a so-called `drive letter'
373070b401SXin LI    prefix, define this to compute the length of that prefix, including the
383070b401SXin LI    colon. */
393070b401SXin LI #define FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
403070b401SXin LI 
413070b401SXin LI /* Define if the backslash character may also serve as a file name component
423070b401SXin LI    separator. */
433070b401SXin LI #define FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
443070b401SXin LI 
453070b401SXin LI #if FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX
463070b401SXin LI # define FILESYSTEM_PREFIX_LEN(Filename) \
473070b401SXin LI   ((Filename)[0] && (Filename)[1] == ':' ? 2 : 0)
483070b401SXin LI #else
493070b401SXin LI # define FILESYSTEM_PREFIX_LEN(Filename) 0
503070b401SXin LI #endif
513070b401SXin LI 
523070b401SXin LI /* Define if gettimeofday clobbers localtime's static buffer. */
533070b401SXin LI /* #undef GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER */
543070b401SXin LI 
553070b401SXin LI /* Define to 1 if you have `alloca', as a function or macro. */
563070b401SXin LI #define HAVE_ALLOCA 1
573070b401SXin LI 
583070b401SXin LI /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
593070b401SXin LI    */
6053ba4fe6SAndrey A. Chernov /* #undef HAVE_ALLOCA_H */
6153ba4fe6SAndrey A. Chernov 
623070b401SXin LI /* Define to 1 if you have the `btowc' function. */
633070b401SXin LI #define HAVE_BTOWC 1
6453ba4fe6SAndrey A. Chernov 
653070b401SXin LI /* Define to 1 if you have the `clock_gettime' function. */
663070b401SXin LI #define HAVE_CLOCK_GETTIME 1
6753ba4fe6SAndrey A. Chernov 
683070b401SXin LI /* Define to 1 if C supports variable-length arrays. */
693070b401SXin LI #define HAVE_C_VARARRAYS 1
703070b401SXin LI 
713070b401SXin LI /* Define if the GNU dcgettext() function is already present or preinstalled.
723070b401SXin LI    */
733070b401SXin LI /* #undef HAVE_DCGETTEXT */
743070b401SXin LI 
753070b401SXin LI /* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if
763070b401SXin LI    you don't. */
773070b401SXin LI #define HAVE_DECL_CLEARERR_UNLOCKED 1
783070b401SXin LI 
793070b401SXin LI /* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
803070b401SXin LI    don't. */
813070b401SXin LI #define HAVE_DECL_FEOF_UNLOCKED 1
823070b401SXin LI 
833070b401SXin LI /* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if
843070b401SXin LI    you don't. */
853070b401SXin LI #define HAVE_DECL_FERROR_UNLOCKED 1
863070b401SXin LI 
873070b401SXin LI /* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if
883070b401SXin LI    you don't. */
89*7954ad9fSAlex Richardson #define HAVE_DECL_FFLUSH_UNLOCKED 1
903070b401SXin LI 
913070b401SXin LI /* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
923070b401SXin LI    you don't. */
933070b401SXin LI #define HAVE_DECL_FGETS_UNLOCKED 0
943070b401SXin LI 
953070b401SXin LI /* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if
963070b401SXin LI    you don't. */
97*7954ad9fSAlex Richardson #define HAVE_DECL_FPUTC_UNLOCKED 1
983070b401SXin LI 
993070b401SXin LI /* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if
1003070b401SXin LI    you don't. */
101*7954ad9fSAlex Richardson #define HAVE_DECL_FPUTS_UNLOCKED 1
1023070b401SXin LI 
1033070b401SXin LI /* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if
1043070b401SXin LI    you don't. */
105*7954ad9fSAlex Richardson #define HAVE_DECL_FREAD_UNLOCKED 1
1063070b401SXin LI 
1073070b401SXin LI /* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if
1083070b401SXin LI    you don't. */
109*7954ad9fSAlex Richardson #define HAVE_DECL_FWRITE_UNLOCKED 1
1103070b401SXin LI 
1113070b401SXin LI /* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if
1123070b401SXin LI    you don't. */
1133070b401SXin LI #define HAVE_DECL_GETCHAR_UNLOCKED 1
1143070b401SXin LI 
1153070b401SXin LI /* Define to 1 if you have the declaration of `getcontext', and to 0 if you
1163070b401SXin LI    don't. */
1173070b401SXin LI #define HAVE_DECL_GETCONTEXT 1
1183070b401SXin LI 
1193070b401SXin LI /* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
1203070b401SXin LI    don't. */
1213070b401SXin LI #define HAVE_DECL_GETC_UNLOCKED 1
1223070b401SXin LI 
1233070b401SXin LI /* Define to 1 if you have the declaration of `getenv', and to 0 if you don't.
1243070b401SXin LI    */
1253070b401SXin LI #define HAVE_DECL_GETENV 1
1263070b401SXin LI 
1273070b401SXin LI /* Define to 1 if you have the declaration of `putchar_unlocked', and to 0 if
1283070b401SXin LI    you don't. */
1293070b401SXin LI #define HAVE_DECL_PUTCHAR_UNLOCKED 1
1303070b401SXin LI 
1313070b401SXin LI /* Define to 1 if you have the declaration of `putc_unlocked', and to 0 if you
1323070b401SXin LI    don't. */
1333070b401SXin LI #define HAVE_DECL_PUTC_UNLOCKED 1
1343070b401SXin LI 
1353070b401SXin LI /* Define to 1 if you have the declaration of `sigaltstack', and to 0 if you
1363070b401SXin LI    don't. */
1373070b401SXin LI #define HAVE_DECL_SIGALTSTACK 1
1383070b401SXin LI 
1393070b401SXin LI /* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
1403070b401SXin LI    don't. */
1413070b401SXin LI #define HAVE_DECL_STRERROR_R 1
1423070b401SXin LI 
1433070b401SXin LI /* Define to 1 if you have the declaration of `strtoimax', and to 0 if you
1443070b401SXin LI    don't. */
1453070b401SXin LI #define HAVE_DECL_STRTOIMAX 1
1463070b401SXin LI 
1473070b401SXin LI /* Define to 1 if you have the declaration of `strtoll', and to 0 if you
1483070b401SXin LI    don't. */
1493070b401SXin LI #define HAVE_DECL_STRTOLL 1
1503070b401SXin LI 
1513070b401SXin LI /* Define to 1 if you have the declaration of `strtoull', and to 0 if you
1523070b401SXin LI    don't. */
1533070b401SXin LI #define HAVE_DECL_STRTOULL 1
1543070b401SXin LI 
1553070b401SXin LI /* Define to 1 if you have the declaration of `strtoumax', and to 0 if you
1563070b401SXin LI    don't. */
1573070b401SXin LI #define HAVE_DECL_STRTOUMAX 1
1583070b401SXin LI 
1593070b401SXin LI /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
1603070b401SXin LI    */
1613070b401SXin LI #define HAVE_DIRENT_H 1
1623070b401SXin LI 
1633070b401SXin LI /* Define to 1 if you have the `dup2' function. */
1643070b401SXin LI #define HAVE_DUP2 1
1653070b401SXin LI 
1663070b401SXin LI /* Define to 1 if you have the <fcntl.h> header file. */
1673070b401SXin LI #define HAVE_FCNTL_H 1
1683070b401SXin LI 
1693070b401SXin LI /* Define to 1 if you have the `fork' function. */
1703070b401SXin LI #define HAVE_FORK 1
1713070b401SXin LI 
1723070b401SXin LI /* Define to 1 if you have the `getcontext' function. */
1733070b401SXin LI #define HAVE_GETCONTEXT 1
1743070b401SXin LI 
1753070b401SXin LI /* Define if the GNU gettext() function is already present or preinstalled. */
1763070b401SXin LI /* #undef HAVE_GETTEXT */
1773070b401SXin LI 
1783070b401SXin LI /* Define to 1 if you have the `gettimeofday' function. */
1793070b401SXin LI #define HAVE_GETTIMEOFDAY 1
1803070b401SXin LI 
1813070b401SXin LI /* Define if you have the iconv() function. */
1823070b401SXin LI /* #undef HAVE_ICONV */
1833070b401SXin LI 
1843070b401SXin LI /* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
1853070b401SXin LI #define HAVE_INTMAX_T 1
1863070b401SXin LI 
1873070b401SXin LI /* Define to 1 if you have the <inttypes.h> header file. */
1883070b401SXin LI #define HAVE_INTTYPES_H 1
1893070b401SXin LI 
1903070b401SXin LI /* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
1913070b401SXin LI    declares uintmax_t. */
1923070b401SXin LI #define HAVE_INTTYPES_H_WITH_UINTMAX 1
1933070b401SXin LI 
1943070b401SXin LI /* Define to 1 if you have the `isascii' function. */
1953070b401SXin LI #define HAVE_ISASCII 1
1963070b401SXin LI 
1973070b401SXin LI /* Define to 1 if you have the <locale.h> header file. */
1983070b401SXin LI #define HAVE_LOCALE_H 1
1993070b401SXin LI 
2003070b401SXin LI /* Define if you have the 'long long' type. */
2013070b401SXin LI #define HAVE_LONG_LONG 1
2023070b401SXin LI 
2033070b401SXin LI /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
2043070b401SXin LI    to 0 otherwise. */
2053070b401SXin LI #define HAVE_MALLOC 1
2063070b401SXin LI 
2073070b401SXin LI /* Define to 1 if you have the `mblen' function. */
2083070b401SXin LI #define HAVE_MBLEN 1
2093070b401SXin LI 
2103070b401SXin LI /* Define to 1 if you have the `mbrlen' function. */
2113070b401SXin LI #define HAVE_MBRLEN 1
2123070b401SXin LI 
2133070b401SXin LI /* Define to 1 if you have the `mbsrtowcs' function. */
2143070b401SXin LI #define HAVE_MBSRTOWCS 1
2153070b401SXin LI 
2163070b401SXin LI /* Define to 1 if <wchar.h> declares mbstate_t. */
2173070b401SXin LI #define HAVE_MBSTATE_T 1
2183070b401SXin LI 
2193070b401SXin LI /* Define to 1 if you have the <memory.h> header file. */
2203070b401SXin LI #define HAVE_MEMORY_H 1
2213070b401SXin LI 
2223070b401SXin LI /* Define to 1 if you have the `mempcpy' function. */
2233070b401SXin LI /* #undef HAVE_MEMPCPY */
2243070b401SXin LI 
2253070b401SXin LI /* Define to 1 if you have the `mkstemp' function. */
2263070b401SXin LI #define HAVE_MKSTEMP 1
2273070b401SXin LI 
2283070b401SXin LI /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
2293070b401SXin LI /* #undef HAVE_NDIR_H */
2303070b401SXin LI 
2313070b401SXin LI /* Define to 1 if your system has a GNU libc compatible `realloc' function,
2323070b401SXin LI    and to 0 otherwise. */
2333070b401SXin LI #define HAVE_REALLOC 1
2343070b401SXin LI 
2353070b401SXin LI /* Define to 1 if you have run the test for working tzset. */
2363070b401SXin LI #define HAVE_RUN_TZSET_TEST 1
2373070b401SXin LI 
2383070b401SXin LI /* Define to 1 if you have the `setlocale' function. */
2393070b401SXin LI #define HAVE_SETLOCALE 1
2403070b401SXin LI 
2413070b401SXin LI /* Define to 1 if you have the DOS-style `setmode' function. */
2423070b401SXin LI /* #undef HAVE_SETMODE_DOS */
2433070b401SXin LI 
2443070b401SXin LI /* Define to 1 if you have the `setrlimit' function. */
2453070b401SXin LI #define HAVE_SETRLIMIT 1
2463070b401SXin LI 
2473070b401SXin LI /* Define to 1 if you have the `sigaction' function. */
2483070b401SXin LI #define HAVE_SIGACTION 1
2493070b401SXin LI 
2503070b401SXin LI /* Define to 1 if you have the `sigaltstack' function. */
2513070b401SXin LI #define HAVE_SIGALTSTACK 1
2523070b401SXin LI 
2533070b401SXin LI /* Define to 1 if you have the `sigprocmask' function. */
2543070b401SXin LI #define HAVE_SIGPROCMASK 1
2553070b401SXin LI 
2563070b401SXin LI /* Define to 1 if the system has the type `stack_t'. */
2573070b401SXin LI #define HAVE_STACK_T 1
2583070b401SXin LI 
2593070b401SXin LI /* Define to 1 if stdbool.h conforms to C99. */
2603070b401SXin LI #define HAVE_STDBOOL_H 1
2613070b401SXin LI 
2623070b401SXin LI /* Define to 1 if you have the <stdint.h> header file. */
2633070b401SXin LI #define HAVE_STDINT_H 1
2643070b401SXin LI 
2653070b401SXin LI /* Define if <stdint.h> exists, doesn't clash with <sys/types.h>, and declares
2663070b401SXin LI    uintmax_t. */
2673070b401SXin LI #define HAVE_STDINT_H_WITH_UINTMAX 1
2683070b401SXin LI 
2693070b401SXin LI /* Define to 1 if you have the <stdlib.h> header file. */
2703070b401SXin LI #define HAVE_STDLIB_H 1
2713070b401SXin LI 
2723070b401SXin LI /* Define to 1 if you have the `strcasecmp' function. */
2733070b401SXin LI #define HAVE_STRCASECMP 1
2743070b401SXin LI 
2753070b401SXin LI /* Define to 1 if you have the `strcasecoll' function. */
2763070b401SXin LI /* #undef HAVE_STRCASECOLL */
2773070b401SXin LI 
2783070b401SXin LI /* Define to 1 if you have the `strerror_r' function. */
2793070b401SXin LI #define HAVE_STRERROR_R 1
2803070b401SXin LI 
2813070b401SXin LI /* Define to 1 if you have the `strftime' function. */
2823070b401SXin LI #define HAVE_STRFTIME 1
2833070b401SXin LI 
2843070b401SXin LI /* Define to 1 if you have the `stricoll' function. */
2853070b401SXin LI /* #undef HAVE_STRICOLL */
2863070b401SXin LI 
2873070b401SXin LI /* Define to 1 if you have the <strings.h> header file. */
2883070b401SXin LI #define HAVE_STRINGS_H 1
2893070b401SXin LI 
2903070b401SXin LI /* Define to 1 if you have the <string.h> header file. */
2913070b401SXin LI #define HAVE_STRING_H 1
2923070b401SXin LI 
2933070b401SXin LI /* Define to 1 if you have the `strncasecmp' function. */
2943070b401SXin LI #define HAVE_STRNCASECMP 1
2953070b401SXin LI 
2963070b401SXin LI /* Define to 1 if you have the `strtoimax' function. */
2973070b401SXin LI #define HAVE_STRTOIMAX 1
2983070b401SXin LI 
2993070b401SXin LI /* Define to 1 if you have the `strtol' function. */
3003070b401SXin LI #define HAVE_STRTOL 1
3013070b401SXin LI 
3023070b401SXin LI /* Define to 1 if you have the `strtoll' function. */
3033070b401SXin LI #define HAVE_STRTOLL 1
3043070b401SXin LI 
3053070b401SXin LI /* Define to 1 if you have the `strtoul' function. */
3063070b401SXin LI #define HAVE_STRTOUL 1
3073070b401SXin LI 
3083070b401SXin LI /* Define to 1 if you have the `strtoull' function. */
3093070b401SXin LI #define HAVE_STRTOULL 1
3103070b401SXin LI 
3113070b401SXin LI /* Define to 1 if you have the `strtoumax' function. */
3123070b401SXin LI #define HAVE_STRTOUMAX 1
3133070b401SXin LI 
3143070b401SXin LI /* Define to 1 if `sa_sigaction' is member of `struct sigaction'. */
3153070b401SXin LI #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
3163070b401SXin LI 
3173070b401SXin LI /* Define to 1 if `st_blksize' is member of `struct stat'. */
3183070b401SXin LI #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
3193070b401SXin LI 
3203070b401SXin LI /* Define to 1 if `st_rdev' is member of `struct stat'. */
3213070b401SXin LI #define HAVE_STRUCT_STAT_ST_RDEV 1
3223070b401SXin LI 
3233070b401SXin LI /* Define to 1 if `tm_zone' is member of `struct tm'. */
3243070b401SXin LI #define HAVE_STRUCT_TM_TM_ZONE 1
3253070b401SXin LI 
3263070b401SXin LI /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
3273070b401SXin LI    */
3283070b401SXin LI /* #undef HAVE_SYS_DIR_H */
3293070b401SXin LI 
3303070b401SXin LI /* Define to 1 if you have the <sys/file.h> header file. */
3313070b401SXin LI #define HAVE_SYS_FILE_H 1
3323070b401SXin LI 
3333070b401SXin LI /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
3343070b401SXin LI    */
3353070b401SXin LI /* #undef HAVE_SYS_NDIR_H */
3363070b401SXin LI 
3373070b401SXin LI /* Define to 1 if you have the <sys/resource.h> header file. */
3383070b401SXin LI #define HAVE_SYS_RESOURCE_H 1
3393070b401SXin LI 
3403070b401SXin LI /* Define to 1 if you have the <sys/stat.h> header file. */
3413070b401SXin LI #define HAVE_SYS_STAT_H 1
3423070b401SXin LI 
3433070b401SXin LI /* Define to 1 if you have the <sys/time.h> header file. */
3443070b401SXin LI #define HAVE_SYS_TIME_H 1
3453070b401SXin LI 
3463070b401SXin LI /* Define to 1 if you have the <sys/types.h> header file. */
3473070b401SXin LI #define HAVE_SYS_TYPES_H 1
3483070b401SXin LI 
3493070b401SXin LI /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
3503070b401SXin LI #define HAVE_SYS_WAIT_H 1
3513070b401SXin LI 
3523070b401SXin LI /* Define to 1 if localtime_r, etc. have the type signatures that POSIX
3533070b401SXin LI    requires. */
3543070b401SXin LI #define HAVE_TIME_R_POSIX 1
3553070b401SXin LI 
3563070b401SXin LI /* Define if struct tm has the tm_gmtoff member. */
3573070b401SXin LI #define HAVE_TM_GMTOFF 1
3583070b401SXin LI 
3593070b401SXin LI /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
3603070b401SXin LI    `HAVE_STRUCT_TM_TM_ZONE' instead. */
3613070b401SXin LI #define HAVE_TM_ZONE 1
3623070b401SXin LI 
3633070b401SXin LI /* Define to 1 if you don't have `tm_zone' but do have the external array
3643070b401SXin LI    `tzname'. */
3653070b401SXin LI /* #undef HAVE_TZNAME */
3663070b401SXin LI 
3673070b401SXin LI /* Define to 1 if you have the `tzset' function. */
3683070b401SXin LI #define HAVE_TZSET 1
3693070b401SXin LI 
3703070b401SXin LI /* Define to 1 if you have the <ucontext.h> header file. */
3713070b401SXin LI #define HAVE_UCONTEXT_H 1
3723070b401SXin LI 
3733070b401SXin LI /* Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>. */
3743070b401SXin LI #define HAVE_UINTMAX_T 1
3753070b401SXin LI 
3763070b401SXin LI /* Define to 1 if you have the <unistd.h> header file. */
3773070b401SXin LI #define HAVE_UNISTD_H 1
3783070b401SXin LI 
3793070b401SXin LI /* Define if you have the 'unsigned long long' type. */
3803070b401SXin LI #define HAVE_UNSIGNED_LONG_LONG 1
3813070b401SXin LI 
3823070b401SXin LI /* Define to 1 if you have the `vfork' function. */
3833070b401SXin LI #define HAVE_VFORK 1
3843070b401SXin LI 
3853070b401SXin LI /* Define to 1 if you have the <vfork.h> header file. */
38653ba4fe6SAndrey A. Chernov /* #undef HAVE_VFORK_H */
38753ba4fe6SAndrey A. Chernov 
3883070b401SXin LI /* Define to 1 if you have the `waitpid' function. */
3893070b401SXin LI #define HAVE_WAITPID 1
39053ba4fe6SAndrey A. Chernov 
3913070b401SXin LI /* Define to 1 if you have the <wchar.h> header file. */
3923070b401SXin LI #define HAVE_WCHAR_H 1
39353ba4fe6SAndrey A. Chernov 
3943070b401SXin LI /* Define to 1 if you have the <wctype.h> header file. */
3953070b401SXin LI #define HAVE_WCTYPE_H 1
39653ba4fe6SAndrey A. Chernov 
3973070b401SXin LI /* Define to 1 if you have the `wmempcpy' function. */
3983070b401SXin LI /* #undef HAVE_WMEMPCPY */
39953ba4fe6SAndrey A. Chernov 
4003070b401SXin LI /* Define to 1 if `fork' works. */
4013070b401SXin LI #define HAVE_WORKING_FORK 1
40253ba4fe6SAndrey A. Chernov 
4033070b401SXin LI /* Define to 1 if `vfork' works. */
4043070b401SXin LI #define HAVE_WORKING_VFORK 1
4053070b401SXin LI 
4063070b401SXin LI /* Define to 1 if extending the stack slightly past the limit causes a
4073070b401SXin LI    SIGSEGV, and an alternate stack can be established with sigaltstack, and
4083070b401SXin LI    the signal handler is passed a context that specifies the run time stack.
4093070b401SXin LI    This behavior is defined by POSIX 1003.1-2001 with the X/Open System
4103070b401SXin LI    Interface (XSI) option and is a standardized way to implement a SEGV-based
4113070b401SXin LI    stack overflow detection heuristic. */
4123070b401SXin LI /* #undef HAVE_XSI_STACK_OVERFLOW_HEURISTIC */
4133070b401SXin LI 
4143070b401SXin LI /* Define to 1 if the system has the type `_Bool'. */
4153070b401SXin LI #define HAVE__BOOL 1
4163070b401SXin LI 
4173070b401SXin LI /* Define to 1 if you have the `__secure_getenv' function. */
4183070b401SXin LI /* #undef HAVE___SECURE_GETENV */
4193070b401SXin LI 
4203070b401SXin LI #if FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR
4213070b401SXin LI # define ISSLASH(C) ((C) == '/' || (C) == '\\')
4223070b401SXin LI #else
4233070b401SXin LI # define ISSLASH(C) ((C) == '/')
4243070b401SXin LI #endif
4253070b401SXin LI 
4263070b401SXin LI /* Name of package */
4273070b401SXin LI #define PACKAGE "diffutils"
4283070b401SXin LI 
4293070b401SXin LI /* Define to the address where bug reports for this package should be sent. */
4303070b401SXin LI #define PACKAGE_BUGREPORT "bug-gnu-utils@gnu.org"
4313070b401SXin LI 
4323070b401SXin LI /* Define to the full name of this package. */
4333070b401SXin LI #define PACKAGE_NAME "GNU diffutils"
4343070b401SXin LI 
4353070b401SXin LI /* Define to the full name and version of this package. */
4363070b401SXin LI #define PACKAGE_STRING "GNU diffutils 2.8.7"
4373070b401SXin LI 
4383070b401SXin LI /* Define to the one symbol short name of this package. */
4393070b401SXin LI #define PACKAGE_TARNAME "diffutils"
4403070b401SXin LI 
4413070b401SXin LI /* Define to the version of this package. */
4423070b401SXin LI #define PACKAGE_VERSION "2.8.7"
4433070b401SXin LI 
4443070b401SXin LI /* Name of "pr" program. */
4453070b401SXin LI #define PR_PROGRAM "/usr/bin/pr"
4463070b401SXin LI 
4473070b401SXin LI /* Define to 1 to avoid alloca in the regular-expression implementation. */
4483070b401SXin LI #define REGEX_MALLOC 1
44953ba4fe6SAndrey A. Chernov 
45053ba4fe6SAndrey A. Chernov /* If using the C implementation of alloca, define if you know the
45153ba4fe6SAndrey A. Chernov    direction of stack growth for your system; otherwise it will be
45253ba4fe6SAndrey A. Chernov    automatically deduced at run-time.
45353ba4fe6SAndrey A. Chernov 	STACK_DIRECTION > 0 => grows toward higher addresses
45453ba4fe6SAndrey A. Chernov 	STACK_DIRECTION < 0 => grows toward lower addresses
4553070b401SXin LI 	STACK_DIRECTION = 0 => direction of growth unknown */
45653ba4fe6SAndrey A. Chernov /* #undef STACK_DIRECTION */
45753ba4fe6SAndrey A. Chernov 
4583070b401SXin LI /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
45953ba4fe6SAndrey A. Chernov /* #undef STAT_MACROS_BROKEN */
46053ba4fe6SAndrey A. Chernov 
4613070b401SXin LI /* Define to 1 if you have the ANSI C header files. */
46253ba4fe6SAndrey A. Chernov #define STDC_HEADERS 1
46353ba4fe6SAndrey A. Chernov 
4643070b401SXin LI /* Define to 1 if strerror_r returns char *. */
4653070b401SXin LI /* #undef STRERROR_R_CHAR_P */
46653ba4fe6SAndrey A. Chernov 
4673070b401SXin LI /* Define to be the nanoseconds member of struct stat's st_mtim, if it exists.
4683070b401SXin LI    */
4693070b401SXin LI #define ST_MTIM_NSEC tv_nsec
4703070b401SXin LI 
4713070b401SXin LI /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
4723070b401SXin LI #define TIME_WITH_SYS_TIME 1
4733070b401SXin LI 
4743070b401SXin LI /* Define to 1 if your <sys/time.h> declares `struct tm'. */
4753070b401SXin LI /* #undef TM_IN_SYS_TIME */
4763070b401SXin LI 
4773070b401SXin LI /* Define if tzset clobbers localtime's static buffer. */
4783070b401SXin LI /* #undef TZSET_CLOBBERS_LOCALTIME_BUFFER */
4793070b401SXin LI 
4803070b401SXin LI /* Version number of package */
4813070b401SXin LI #define VERSION "2.8.7"
4823070b401SXin LI 
4833070b401SXin LI /* Define to 1 if on AIX 3.
4843070b401SXin LI    System headers sometimes define this.
4853070b401SXin LI    We just want to avoid a redefinition error message.  */
4863070b401SXin LI #ifndef _ALL_SOURCE
4873070b401SXin LI /* # undef _ALL_SOURCE */
4883070b401SXin LI #endif
4893070b401SXin LI 
4903070b401SXin LI /* Number of bits in a file offset, on hosts where this is settable. */
4913070b401SXin LI /* #undef _FILE_OFFSET_BITS */
4923070b401SXin LI 
4933070b401SXin LI /* Enable GNU extensions on systems that have them.  */
4943070b401SXin LI #ifndef _GNU_SOURCE
4953070b401SXin LI # define _GNU_SOURCE 1
4963070b401SXin LI #endif
4973070b401SXin LI 
4983070b401SXin LI /* Define for large files, on AIX-style hosts. */
4993070b401SXin LI /* #undef _LARGE_FILES */
5003070b401SXin LI 
5013070b401SXin LI /* Define to 1 if on MINIX. */
5023070b401SXin LI /* #undef _MINIX */
5033070b401SXin LI 
5043070b401SXin LI /* Define to 2 if the system does not provide POSIX.1 features except with
5053070b401SXin LI    this defined. */
5063070b401SXin LI /* #undef _POSIX_1_SOURCE */
5073070b401SXin LI 
5083070b401SXin LI /* Define to 1 if you need to in order for `stat' and other things to work. */
5093070b401SXin LI /* #undef _POSIX_SOURCE */
5103070b401SXin LI 
5113070b401SXin LI /* Enable extensions on Solaris.  */
5123070b401SXin LI #ifndef __EXTENSIONS__
5133070b401SXin LI # define __EXTENSIONS__ 1
5143070b401SXin LI #endif
5153070b401SXin LI 
5163070b401SXin LI /* Define to empty if `const' does not conform to ANSI C. */
5173070b401SXin LI /* #undef const */
5183070b401SXin LI 
5193070b401SXin LI /* Define to a replacement function name for fnmatch(). */
5203070b401SXin LI /* #undef fnmatch */
5213070b401SXin LI 
5223070b401SXin LI /* Define to rpl_gettimeofday if the replacement function should be used. */
5233070b401SXin LI /* #undef gettimeofday */
5243070b401SXin LI 
5253070b401SXin LI /* Define to rpl_gmtime if the replacement function should be used. */
5263070b401SXin LI /* #undef gmtime */
5273070b401SXin LI 
5283070b401SXin LI /* Define to `__inline__' or `__inline' if that's what the C compiler
5293070b401SXin LI    calls it, or to nothing if 'inline' is not supported under any name.  */
5303070b401SXin LI #ifndef __cplusplus
5313070b401SXin LI /* #undef inline */
5323070b401SXin LI #endif
5333070b401SXin LI 
5343070b401SXin LI /* Define to long or long long if <inttypes.h> and <stdint.h> don't define. */
5353070b401SXin LI /* #undef intmax_t */
5363070b401SXin LI 
5373070b401SXin LI /* Define to rpl_localtime if the replacement function should be used. */
5383070b401SXin LI /* #undef localtime */
5393070b401SXin LI 
5403070b401SXin LI /* Define to rpl_malloc if the replacement function should be used. */
5413070b401SXin LI /* #undef malloc */
5423070b401SXin LI 
5433070b401SXin LI /* Define to a type if <wchar.h> does not define. */
5443070b401SXin LI /* #undef mbstate_t */
5453070b401SXin LI 
5463070b401SXin LI /* Define to rpl_mkstemp if the replacement function should be used. */
5473070b401SXin LI /* #undef mkstemp */
5483070b401SXin LI 
5493070b401SXin LI /* Define to the name of the strftime replacement function. */
5503070b401SXin LI #define my_strftime nstrftime
5513070b401SXin LI 
5523070b401SXin LI /* Define to `long' if <sys/types.h> does not define. */
5533070b401SXin LI /* #undef off_t */
5543070b401SXin LI 
5553070b401SXin LI /* Define to `int' if <sys/types.h> does not define. */
5563070b401SXin LI /* #undef pid_t */
5573070b401SXin LI 
5583070b401SXin LI /* Define to rpl_realloc if the replacement function should be used. */
5593070b401SXin LI /* #undef realloc */
5603070b401SXin LI 
5613070b401SXin LI /* Define to equivalent of C99 restrict keyword, or to nothing if this is not
5623070b401SXin LI    supported. Do not define if restrict is supported directly. */
5633070b401SXin LI #define restrict __restrict
5643070b401SXin LI 
5653070b401SXin LI /* Define to rpl_tzset if the wrapper function should be used. */
5663070b401SXin LI /* #undef tzset */
5673070b401SXin LI 
5683070b401SXin LI /* Define to unsigned long or unsigned long long if <stdint.h> and
5693070b401SXin LI    <inttypes.h> don't define. */
5703070b401SXin LI /* #undef uintmax_t */
5713070b401SXin LI 
5723070b401SXin LI /* Define as `fork' if `vfork' does not work. */
57353ba4fe6SAndrey A. Chernov /* #undef vfork */
574