nrelease - fix/improve livecd
[dragonfly.git] / gnu / usr.bin / cvs / lib / config.h.proto
CommitLineData
984263bc
MD
1/* config.h. Generated by configure. */
2/* config.h.in. Generated from configure.in by autoheader. */
3
a7c3d9d6
SS
4/* Define this to a NULL terminated list of allowed path prefixes (for
5 directories) and paths to files the CVS server will allow configuration to
6 be read from when specified from the command line. */
c0d274d0 7#define ALLOW_CONFIG_OVERRIDE "@CVS_OVERRIDE_CONF@", "@CVS_OVERRIDE_DIR@", NULL
a7c3d9d6 8
984263bc
MD
9/* Enable AUTH_CLIENT_SUPPORT to enable pserver as a remote access method in
10 the CVS client (default) */
11#define AUTH_CLIENT_SUPPORT 1
12
13/* Define if you want to use the password authenticated server. */
14#define AUTH_SERVER_SUPPORT 1
15
16/* Define if you want CVS to be able to be a remote repository client. */
17#define CLIENT_SUPPORT 1
18
19/* Define to 1 if the `closedir' function returns void instead of `int'. */
20/* #undef CLOSEDIR_VOID */
21
83bf17af
MD
22/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
23 systems. This function is required for `alloca.c' support on those systems.
24 */
25/* #undef CRAY_STACKSEG_END */
26
27/* define if cross compiling */
28/* #undef CROSS_COMPILING */
29
984263bc
MD
30/* The CVS admin command is restricted to the members of the group
31 CVS_ADMIN_GROUP. If this group does not exist, all users are allowed to run
32 CVS admin. To disable the CVS admin command for all users, create an empty
33 CVS_ADMIN_GROUP by running configure with the --with-cvs-admin-group=
34 option. To disable access control for CVS admin, run configure with the
35 --without-cvs-admin-group option in order to comment out the define below.
36 */
37#define CVS_ADMIN_GROUP "@CVS_ADMIN_GROUP@"
38
39/* When committing a permanent change, CVS and RCS make a log entry of who
40 committed the change. If you are committing the change logged in as "root"
41 (not under "su" or other root-priv giving program), CVS/RCS cannot
42 determine who is actually making the change. As such, by default, CVS
43 prohibits changes committed by users logged in as "root". You can disable
44 checking by passing the "--enable-rootcommit" option to configure or by
45 commenting out the lines below. */
46#define CVS_BADROOT 1
47
83bf17af
MD
48/* Define to 1 if using `alloca.c'. */
49/* #undef C_ALLOCA */
50
183c614c
SS
51/* Define if there is a member named d_ino in the struct describing directory
52 headers. */
53#define D_INO_IN_DIRENT 1
54
984263bc
MD
55/* The default editor to use, if one does not specify the "-e" option to cvs,
56 or does not have an EDITOR environment variable. If this is not set to an
57 absolute path to an executable, use the shell to find where the editor
58 actually is. This allows sites with /usr/bin/vi or /usr/ucb/vi to work
59 equally well (assuming that their PATH is reasonable). */
60#define EDITOR_DFLT "vi"
61
e9cdc67a
JR
62/* Define to 1 if translation of program messages to the user's native
63 language is requested. */
64/* #undef ENABLE_NLS */
65
984263bc
MD
66/* Define to enable encryption support. */
67/* #undef ENCRYPTION */
68
fffa0a21
SS
69/* Define as good substitute value for EOVERFLOW. */
70/* #undef EOVERFLOW */
71
e9cdc67a
JR
72/* Define if this executable will be running on case insensitive file systems.
73 In the client case, this means that it will request that the server pretend
74 to be case insensitive if it isn't already. */
75/* #undef FILENAMES_CASE_INSENSITIVE */
76
9360f817
MD
77/* Define on systems for which file names may have a so-called `drive letter'
78 prefix, define this to compute the length of that prefix, including the
79 colon. */
fffa0a21 80#define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
9360f817
MD
81
82/* Define if the backslash character may also serve as a file name component
83 separator. */
fffa0a21 84#define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
9360f817 85
fffa0a21
SS
86#if FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX
87# define FILE_SYSTEM_PREFIX_LEN(Filename) \
9360f817
MD
88 ((Filename)[0] && (Filename)[1] == ':' ? 2 : 0)
89#else
fffa0a21 90# define FILE_SYSTEM_PREFIX_LEN(Filename) 0
9360f817
MD
91#endif
92
984263bc
MD
93/* When committing or importing files, you must enter a log message. Normally,
94 you can do this either via the -m flag on the command line, the -F flag on
95 the command line, or an editor will be started for you. If you like to use
e9cdc67a 96 logging templates (the rcsinfo file within the $CVSROOT/CVSROOT directory),
984263bc
MD
97 you might want to force people to use the editor even if they specify a
98 message with -m or -F. Enabling FORCE_USE_EDITOR will cause the -m or -F
99 message to be appended to the temp file when the editor is started. */
100/* #undef FORCE_USE_EDITOR */
101
102/* Define to an alternative value if GSS_C_NT_HOSTBASED_SERVICE isn't defined
103 in the gssapi.h header file. MIT Kerberos 1.2.1 requires this. Only
104 relevant when using GSSAPI. */
105/* #undef GSS_C_NT_HOSTBASED_SERVICE */
106
83bf17af
MD
107/* Define to 1 if you have the `alarm' function. */
108#define HAVE_ALARM 1
109
fffa0a21
SS
110/* Define to 1 if you have `alloca' after including <alloca.h>, a header that
111 may be supplied by this distribution. */
112#define HAVE_ALLOCA 1
113
114/* Define HAVE_ALLOCA_H for backward compatibility with older code that
115 includes <alloca.h> only if HAVE_ALLOCA_H is defined. */
116#define HAVE_ALLOCA_H 1
83bf17af 117
e9cdc67a
JR
118/* Define to 1 if you have the `atexit' function. */
119#define HAVE_ATEXIT 1
120
a7c3d9d6
SS
121/* Define to 1 if you have the <bp-sym.h> header file. */
122/* #undef HAVE_BP_SYM_H */
123
83bf17af 124/* Define to 1 if you have the `btowc' function. */
c0d274d0 125/* #undef HAVE_BTOWC */
183c614c 126
a7c3d9d6
SS
127/* Define to 1 if you have the `canonicalize_file_name' function. */
128/* #undef HAVE_CANONICALIZE_FILE_NAME */
129
183c614c
SS
130/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
131 CoreFoundation framework. */
132/* #undef HAVE_CFLOCALECOPYCURRENT */
133
134/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
135 the CoreFoundation framework. */
136/* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
137
138/* Define to 1 if you have the `chsize' function. */
139/* #undef HAVE_CHSIZE */
83bf17af
MD
140
141/* Define to 1 if you have the `clock_gettime' function. */
142#define HAVE_CLOCK_GETTIME 1
143
144/* Define to 1 if you have the `clock_settime' function. */
145#define HAVE_CLOCK_SETTIME 1
146
984263bc
MD
147/* Define if you have the connect function. */
148#define HAVE_CONNECT 1
149
150/* Define if you have the crypt function. */
151#define HAVE_CRYPT 1
152
e9cdc67a
JR
153/* Define if the GNU dcgettext() function is already present or preinstalled.
154 */
155/* #undef HAVE_DCGETTEXT */
156
157/* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if
158 you don't. */
159#define HAVE_DECL_CLEARERR_UNLOCKED 1
160
161/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
162 don't. */
163#define HAVE_DECL_FEOF_UNLOCKED 1
164
165/* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if
166 you don't. */
167#define HAVE_DECL_FERROR_UNLOCKED 1
168
169/* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if
170 you don't. */
794d5643 171#define HAVE_DECL_FFLUSH_UNLOCKED 1
e9cdc67a
JR
172
173/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
174 you don't. */
175#define HAVE_DECL_FGETS_UNLOCKED 0
176
fffa0a21
SS
177/* Define to 1 if you have the declaration of `flockfile', and to 0 if you
178 don't. */
179#define HAVE_DECL_FLOCKFILE 1
180
e9cdc67a
JR
181/* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if
182 you don't. */
794d5643 183#define HAVE_DECL_FPUTC_UNLOCKED 1
e9cdc67a
JR
184
185/* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if
186 you don't. */
794d5643 187#define HAVE_DECL_FPUTS_UNLOCKED 1
e9cdc67a
JR
188
189/* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if
190 you don't. */
794d5643 191#define HAVE_DECL_FREAD_UNLOCKED 1
e9cdc67a 192
fffa0a21
SS
193/* Define to 1 if you have the declaration of `funlockfile', and to 0 if you
194 don't. */
195#define HAVE_DECL_FUNLOCKFILE 1
e9cdc67a
JR
196
197/* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if
198 you don't. */
794d5643 199#define HAVE_DECL_FWRITE_UNLOCKED 1
e9cdc67a
JR
200
201/* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if
202 you don't. */
203#define HAVE_DECL_GETCHAR_UNLOCKED 1
204
183c614c
SS
205/* Define to 1 if you have the declaration of `getcwd', and to 0 if you don't.
206 */
207#define HAVE_DECL_GETCWD 1
208
e9cdc67a
JR
209/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
210 don't. */
211#define HAVE_DECL_GETC_UNLOCKED 1
212
a7c3d9d6
SS
213/* Define to 1 if you have the declaration of `getdelim', and to 0 if you
214 don't. */
4e035039 215#define HAVE_DECL_GETDELIM 0
a7c3d9d6 216
e9cdc67a
JR
217/* Define to 1 if you have the declaration of `getenv', and to 0 if you don't.
218 */
219#define HAVE_DECL_GETENV 1
220
a7c3d9d6
SS
221/* Define to 1 if you have the declaration of `getline', and to 0 if you
222 don't. */
c0d274d0 223#define HAVE_DECL_GETLINE 1
a7c3d9d6
SS
224
225/* Define to 1 if you have the declaration of `getlogin', and to 0 if you
226 don't. */
227#define HAVE_DECL_GETLOGIN 1
228
229/* Define to 1 if you have the declaration of `getlogin_r', and to 0 if you
230 don't. */
231#define HAVE_DECL_GETLOGIN_R 1
232
fffa0a21
SS
233/* Define to 1 if you have the declaration of `getpass', and to 0 if you
234 don't. */
235#define HAVE_DECL_GETPASS 1
236
183c614c
SS
237/* Define to 1 if you have the declaration of `memrchr', and to 0 if you
238 don't. */
c0d274d0 239#define HAVE_DECL_MEMRCHR 1
183c614c 240
83bf17af
MD
241/* Define to 1 if you have the declaration of `nanosleep', and to 0 if you
242 don't. */
243#define HAVE_DECL_NANOSLEEP 1
244
e9cdc67a
JR
245/* Define to 1 if you have the declaration of `putchar_unlocked', and to 0 if
246 you don't. */
247#define HAVE_DECL_PUTCHAR_UNLOCKED 1
248
249/* Define to 1 if you have the declaration of `putc_unlocked', and to 0 if you
250 don't. */
251#define HAVE_DECL_PUTC_UNLOCKED 1
252
a7c3d9d6
SS
253/* Define to 1 if you have the declaration of `strdup', and to 0 if you don't.
254 */
255#define HAVE_DECL_STRDUP 1
256
83bf17af
MD
257/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
258 don't. */
259#define HAVE_DECL_STRERROR_R 1
260
183c614c
SS
261/* Define to 1 if you have the declaration of `__fpending', and to 0 if you
262 don't. */
c0d274d0 263#define HAVE_DECL___FPENDING 0
183c614c 264
984263bc
MD
265/* Define to 1 if you have the <direct.h> header file. */
266/* #undef HAVE_DIRECT_H */
267
268/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
269 */
270#define HAVE_DIRENT_H 1
271
272/* Define to 1 if you have the `dup2' function. */
273#define HAVE_DUP2 1
274
fffa0a21
SS
275/* Define if you have the declaration of environ. */
276/* #undef HAVE_ENVIRON_DECL */
277
278/* Define if you have the declaration of errno. */
279/* #undef HAVE_ERRNO_DECL */
280
984263bc
MD
281/* Define to 1 if you have the `fchdir' function. */
282#define HAVE_FCHDIR 1
283
284/* Define to 1 if you have the `fchmod' function. */
285#define HAVE_FCHMOD 1
286
287/* Define to 1 if you have the <fcntl.h> header file. */
288#define HAVE_FCNTL_H 1
289
a7c3d9d6 290/* Define to 1 if you have the `flockfile' function. */
c0d274d0 291/* #undef HAVE_FLOCKFILE */
a7c3d9d6 292
984263bc
MD
293/* Define to 1 if you have the `fork' function. */
294#define HAVE_FORK 1
295
e9cdc67a
JR
296/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
297#define HAVE_FSEEKO 1
298
984263bc
MD
299/* Define to 1 if you have the `fsync' function. */
300#define HAVE_FSYNC 1
301
302/* Define to 1 if you have the `ftime' function. */
303/* #undef HAVE_FTIME */
304
305/* Define to 1 if you have the `ftruncate' function. */
306#define HAVE_FTRUNCATE 1
307
a7c3d9d6 308/* Define to 1 if you have the `funlockfile' function. */
c0d274d0 309/* #undef HAVE_FUNLOCKFILE */
a7c3d9d6
SS
310
311/* Define to 1 if you have the `gai_strerror' function. */
312#define HAVE_GAI_STRERROR 1
313
314/* Define to 1 if you have the `getaddrinfo' function. */
315#define HAVE_GETADDRINFO 1
316
e9cdc67a 317/* Define to 1 if you have the `getdelim' function. */
4e035039 318#define HAVE_GETDELIM 0
e9cdc67a 319
984263bc
MD
320/* Define to 1 if you have the `geteuid' function. */
321#define HAVE_GETEUID 1
322
323/* Define to 1 if you have the `getgroups' function. */
324#define HAVE_GETGROUPS 1
325
326/* Define to 1 if you have the `gethostname' function. */
327#define HAVE_GETHOSTNAME 1
328
a7c3d9d6
SS
329/* Define to 1 if you have the `getlogin_r' function. */
330#define HAVE_GETLOGIN_R 1
331
fffa0a21
SS
332/* Define to 1 if you have the <getopt.h> header file. */
333#define HAVE_GETOPT_H 1
334
335/* Define to 1 if you have the `getopt_long_only' function. */
336#define HAVE_GETOPT_LONG_ONLY 1
337
984263bc
MD
338/* Define to 1 if you have the `getpagesize' function. */
339#define HAVE_GETPAGESIZE 1
340
a7c3d9d6 341/* Define to 1 if you have the `getpwnam_r' function. */
c0d274d0 342#define HAVE_GETPWNAM_R 1
a7c3d9d6 343
984263bc
MD
344/* Define if you have the getspnam function. */
345/* #undef HAVE_GETSPNAM */
346
e9cdc67a
JR
347/* Define if the GNU gettext() function is already present or preinstalled. */
348/* #undef HAVE_GETTEXT */
349
984263bc
MD
350/* Define to 1 if you have the `gettimeofday' function. */
351#define HAVE_GETTIMEOFDAY 1
352
a7c3d9d6
SS
353/* Define to 1 if you have the <glob.h> header file. */
354#define HAVE_GLOB_H 1
355
984263bc
MD
356/* Define if you have GSSAPI with Kerberos version 5 available. */
357/* #undef HAVE_GSSAPI */
358
359/* Define to 1 if you have the <gssapi/gssapi_generic.h> header file. */
360/* #undef HAVE_GSSAPI_GSSAPI_GENERIC_H */
361
362/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
363/* #undef HAVE_GSSAPI_GSSAPI_H */
364
365/* Define to 1 if you have the <gssapi.h> header file. */
366/* #undef HAVE_GSSAPI_H */
367
e9cdc67a 368/* Define if you have the iconv() function. */
c0d274d0 369/* #undef HAVE_ICONV */
e9cdc67a 370
984263bc
MD
371/* Define to 1 if you have the `initgroups' function. */
372#define HAVE_INITGROUPS 1
373
83bf17af
MD
374/* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
375#define HAVE_INTMAX_T 1
376
fffa0a21 377/* Define if <inttypes.h> exists and doesn't clash with <sys/types.h>. */
984263bc
MD
378#define HAVE_INTTYPES_H 1
379
e9cdc67a
JR
380/* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
381 declares uintmax_t. */
382#define HAVE_INTTYPES_H_WITH_UINTMAX 1
383
984263bc
MD
384/* Define to 1 if you have the <io.h> header file. */
385/* #undef HAVE_IO_H */
386
a7c3d9d6
SS
387/* Define to 1 if <sys/socket.h> defines AF_INET. */
388#define HAVE_IPV4 1
389
390/* Define to 1 if <sys/socket.h> defines AF_INET6. */
391#define HAVE_IPV6 1
392
83bf17af
MD
393/* Define to 1 if you have the `isascii' function. */
394#define HAVE_ISASCII 1
395
a7c3d9d6
SS
396/* Define to 1 if you have the `isblank' function. */
397#define HAVE_ISBLANK 1
398
183c614c
SS
399/* Define to 1 if you have the `iswprint' function. */
400#define HAVE_ISWPRINT 1
401
984263bc
MD
402/* Define if you have MIT Kerberos version 4 available. */
403/* #undef HAVE_KERBEROS */
404
405/* Define to 1 if you have the <krb5.h> header file. */
406/* #undef HAVE_KRB5_H */
407
408/* Define to 1 if you have the `krb_get_err_text' function. */
409/* #undef HAVE_KRB_GET_ERR_TEXT */
410
a7c3d9d6
SS
411/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
412#define HAVE_LANGINFO_CODESET 1
413
e9cdc67a
JR
414/* Define to 1 if you have the `krb' library (-lkrb). */
415/* #undef HAVE_LIBKRB */
416
417/* Define to 1 if you have the `krb4' library (-lkrb4). */
418/* #undef HAVE_LIBKRB4 */
419
984263bc
MD
420/* Define to 1 if you have the `nsl' library (-lnsl). */
421/* #undef HAVE_LIBNSL */
422
a7c3d9d6
SS
423/* Define to 1 if you have the <locale.h> header file. */
424#define HAVE_LOCALE_H 1
425
984263bc
MD
426/* Define to 1 if you have the `login' function. */
427/* #undef HAVE_LOGIN */
428
429/* Define to 1 if you have the `logout' function. */
430/* #undef HAVE_LOGOUT */
431
83bf17af
MD
432/* Define if you have the 'long double' type. */
433#define HAVE_LONG_DOUBLE 1
434
984263bc
MD
435/* Define to 1 if you support file names longer than 14 characters. */
436#define HAVE_LONG_FILE_NAMES 1
437
83bf17af
MD
438/* Define if you have the 'long long' type. */
439#define HAVE_LONG_LONG 1
440
e9cdc67a
JR
441/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
442 to 0 otherwise. */
443#define HAVE_MALLOC 1
444
183c614c
SS
445/* Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including
446 config.h and <sys/mman.h>. */
447#define HAVE_MAP_ANONYMOUS 1
448
83bf17af
MD
449/* Define to 1 if you have the `mblen' function. */
450#define HAVE_MBLEN 1
451
452/* Define to 1 if you have the `mbrlen' function. */
183c614c
SS
453#define HAVE_MBRLEN 1
454
455/* Define to 1 if mbrtowc and mbstate_t are properly declared. */
456#define HAVE_MBRTOWC 1
457
458/* Define to 1 if you have the `mbsinit' function. */
459#define HAVE_MBSINIT 1
83bf17af
MD
460
461/* Define to 1 if you have the `mbsrtowcs' function. */
462/* #undef HAVE_MBSRTOWCS */
463
464/* Define to 1 if <wchar.h> declares mbstate_t. */
465#define HAVE_MBSTATE_T 1
466
984263bc
MD
467/* Define if you have memchr (always for CVS). */
468#define HAVE_MEMCHR 1
469
470/* Define to 1 if you have the `memmove' function. */
471#define HAVE_MEMMOVE 1
472
473/* Define to 1 if you have the <memory.h> header file. */
474#define HAVE_MEMORY_H 1
475
83bf17af 476/* Define to 1 if you have the `mempcpy' function. */
75c42e2c 477#define HAVE_MEMPCPY 1
83bf17af 478
183c614c 479/* Define to 1 if you have the `memrchr' function. */
c0d274d0 480#define HAVE_MEMRCHR 1
984263bc 481
a7c3d9d6
SS
482/* Define to 1 if <limits.h> defines the MIN and MAX macros. */
483/* #undef HAVE_MINMAX_IN_LIMITS_H */
484
485/* Define to 1 if <sys/param.h> defines the MIN and MAX macros. */
486#define HAVE_MINMAX_IN_SYS_PARAM_H 1
487
984263bc
MD
488/* Define to 1 if you have the `mknod' function. */
489#define HAVE_MKNOD 1
490
491/* Define to 1 if you have the `mkstemp' function. */
492#define HAVE_MKSTEMP 1
493
984263bc
MD
494/* Define to 1 if you have a working `mmap' system call. */
495#define HAVE_MMAP 1
496
183c614c
SS
497/* Define to 1 if you have the `nanotime' function. */
498/* #undef HAVE_NANOTIME */
499
984263bc
MD
500/* Define to 1 if you have the <ndbm.h> header file. */
501#define HAVE_NDBM_H 1
502
503/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
504/* #undef HAVE_NDIR_H */
505
183c614c 506/* Define to 1 if you have the `openat' function. */
c0d274d0 507#define HAVE_OPENAT 1
183c614c 508
fffa0a21
SS
509/* Define to 1 if you have the <OS.h> header file. */
510/* #undef HAVE_OS_H */
511
e9cdc67a
JR
512/* Define to enable system authentication with PAM instead of using the simple
513 getpwnam interface. This allows authentication (in theory) with any PAM
514 module, e.g. on systems with shadow passwords or via LDAP */
515/* #undef HAVE_PAM */
516
a7c3d9d6
SS
517/* Define to 1 if pam/pam_appl.h is available */
518/* #undef HAVE_PAM_PAM_APPL_H */
519
183c614c
SS
520/* Define to 1 if getcwd works, except it sometimes fails when it shouldn't,
521 setting errno to ERANGE, ENAMETOOLONG, or ENOENT. If __GETCWD_PREFIX is not
522 defined, it doesn't matter whether HAVE_PARTLY_WORKING_GETCWD is defined.
523 */
c0d274d0 524#define HAVE_PARTLY_WORKING_GETCWD 1
183c614c
SS
525
526/* Define to 1 if you have the `posix_memalign' function. */
c0d274d0 527#define HAVE_POSIX_MEMALIGN 1
183c614c 528
e9cdc67a
JR
529/* Define to 1 if the `printf' function supports the %p format for printing
530 pointers. */
531#define HAVE_PRINTF_PTR 1
532
83bf17af
MD
533/* Define to 1 if the system has the type `ptrdiff_t'. */
534#define HAVE_PTRDIFF_T 1
535
984263bc
MD
536/* Define to 1 if you have the `readlink' function. */
537#define HAVE_READLINK 1
538
e9cdc67a
JR
539/* Define to 1 if your system has a GNU libc compatible `realloc' function,
540 and to 0 otherwise. */
541#define HAVE_REALLOC 1
542
984263bc
MD
543/* Define to 1 if you have the `regcomp' function. */
544#define HAVE_REGCOMP 1
545
546/* Define to 1 if you have the `regerror' function. */
547#define HAVE_REGERROR 1
548
549/* Define to 1 if you have the `regexec' function. */
550#define HAVE_REGEXEC 1
551
552/* Define to 1 if you have the `regfree' function. */
553#define HAVE_REGFREE 1
554
a7c3d9d6
SS
555/* Define to 1 if you have the `resolvepath' function. */
556/* #undef HAVE_RESOLVEPATH */
557
fffa0a21
SS
558/* Define to 1 if you have the `rpmatch' function. */
559/* #undef HAVE_RPMATCH */
560
83bf17af
MD
561/* Define to 1 if you have run the test for working tzset. */
562#define HAVE_RUN_TZSET_TEST 1
984263bc 563
fffa0a21
SS
564/* Define to 1 if you have the <search.h> header file. */
565/* #undef HAVE_SEARCH_H */
566
a7c3d9d6
SS
567/* Define to 1 if security/pam_appl.h is available */
568/* #undef HAVE_SECURITY_PAM_APPL_H */
569
fffa0a21
SS
570/* Define to 1 if you have the `setenv' function. */
571#define HAVE_SETENV 1
572
984263bc
MD
573/* Define if the diff library should use setmode for binary files. */
574/* #undef HAVE_SETMODE */
575
576/* Define to 1 if you have the `sigaction' function. */
577#define HAVE_SIGACTION 1
578
579/* Define to 1 if you have the `sigblock' function. */
580#define HAVE_SIGBLOCK 1
581
a7c3d9d6
SS
582/* Define to 1 if you have the `siginterrupt' function. */
583#define HAVE_SIGINTERRUPT 1
584
984263bc
MD
585/* Define to 1 if you have the `sigprocmask' function. */
586#define HAVE_SIGPROCMASK 1
587
588/* Define to 1 if you have the `sigsetmask' function. */
589#define HAVE_SIGSETMASK 1
590
591/* Define to 1 if you have the `sigvec' function. */
592#define HAVE_SIGVEC 1
593
83bf17af
MD
594/* Define to 1 if you have the `snprintf' function. */
595#define HAVE_SNPRINTF 1
596
83bf17af 597/* Define to 1 if stdbool.h conforms to C99. */
183c614c 598#define HAVE_STDBOOL_H 1
83bf17af 599
984263bc
MD
600/* Define to 1 if you have the <stdint.h> header file. */
601#define HAVE_STDINT_H 1
602
e9cdc67a
JR
603/* Define if <stdint.h> exists, doesn't clash with <sys/types.h>, and declares
604 uintmax_t. */
605#define HAVE_STDINT_H_WITH_UINTMAX 1
606
fffa0a21
SS
607/* Define to 1 if you have the <stdio_ext.h> header file. */
608/* #undef HAVE_STDIO_EXT_H */
609
984263bc
MD
610/* Define to 1 if you have the <stdlib.h> header file. */
611#define HAVE_STDLIB_H 1
612
613/* Define if you have strchr (always for CVS). */
614#define HAVE_STRCHR 1
615
a7c3d9d6
SS
616/* Define to 1 if you have the `strdup' function. */
617#define HAVE_STRDUP 1
618
984263bc
MD
619/* Define to 1 if you have the `strerror' function. */
620#define HAVE_STRERROR 1
621
83bf17af
MD
622/* Define to 1 if you have the `strerror_r' function. */
623#define HAVE_STRERROR_R 1
624
625/* Define to 1 if you have the `strftime' function. */
626#define HAVE_STRFTIME 1
627
984263bc
MD
628/* Define to 1 if you have the <strings.h> header file. */
629#define HAVE_STRINGS_H 1
630
631/* Define to 1 if you have the <string.h> header file. */
632#define HAVE_STRING_H 1
633
fffa0a21
SS
634/* Define to 1 if you have the `strncasecmp' function. */
635#define HAVE_STRNCASECMP 1
636
183c614c
SS
637/* Define to 1 if you have the `strtol' function. */
638#define HAVE_STRTOL 1
639
984263bc
MD
640/* Define to 1 if you have the `strtoul' function. */
641#define HAVE_STRTOUL 1
642
a7c3d9d6
SS
643/* Define if there is a member named d_type in the struct describing directory
644 headers. */
645#define HAVE_STRUCT_DIRENT_D_TYPE 1
646
984263bc
MD
647/* Define to 1 if `st_blksize' is member of `struct stat'. */
648#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
649
650/* Define to 1 if `st_rdev' is member of `struct stat'. */
651#define HAVE_STRUCT_STAT_ST_RDEV 1
652
fffa0a21 653/* Define if struct timespec is declared in <time.h>. */
83bf17af
MD
654#define HAVE_STRUCT_TIMESPEC 1
655
656/* Define to 1 if `tm_zone' is member of `struct tm'. */
657#define HAVE_STRUCT_TM_TM_ZONE 1
658
984263bc
MD
659/* Define to 1 if you have the <syslog.h> header file. */
660#define HAVE_SYSLOG_H 1
661
662/* Define to 1 if you have the <sys/bsdtypes.h> header file. */
663/* #undef HAVE_SYS_BSDTYPES_H */
664
a7c3d9d6
SS
665/* Define to 1 if you have the <sys/cdefs.h> header file. */
666#define HAVE_SYS_CDEFS_H 1
667
984263bc
MD
668/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
669 */
670/* #undef HAVE_SYS_DIR_H */
671
672/* Define to 1 if you have the <sys/file.h> header file. */
673#define HAVE_SYS_FILE_H 1
674
fffa0a21
SS
675/* Define to 1 if you have the <sys/inttypes.h> header file. */
676/* #undef HAVE_SYS_INTTYPES_H */
677
984263bc
MD
678/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
679 */
680/* #undef HAVE_SYS_NDIR_H */
681
682/* Define to 1 if you have the <sys/param.h> header file. */
683#define HAVE_SYS_PARAM_H 1
684
685/* Define to 1 if you have the <sys/resource.h> header file. */
686#define HAVE_SYS_RESOURCE_H 1
687
688/* Define to 1 if you have the <sys/select.h> header file. */
689#define HAVE_SYS_SELECT_H 1
690
691/* Define to 1 if you have the <sys/stat.h> header file. */
692#define HAVE_SYS_STAT_H 1
693
984263bc
MD
694/* Define to 1 if you have the <sys/time.h> header file. */
695#define HAVE_SYS_TIME_H 1
696
697/* Define to 1 if you have the <sys/types.h> header file. */
698#define HAVE_SYS_TYPES_H 1
699
700/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
701#define HAVE_SYS_WAIT_H 1
702
a7c3d9d6
SS
703/* Define to 1 if you have the `tcgetattr' function. */
704#define HAVE_TCGETATTR 1
705
706/* Define to 1 if you have the `tcsetattr' function. */
707#define HAVE_TCSETATTR 1
708
709/* Define to 1 if you have the <termios.h> header file. */
710#define HAVE_TERMIOS_H 1
711
984263bc
MD
712/* Define to 1 if you have the `timezone' function. */
713#define HAVE_TIMEZONE 1
714
83bf17af
MD
715/* Define to 1 if localtime_r, etc. have the type signatures that POSIX
716 requires. */
fffa0a21 717#define HAVE_TIME_R_POSIX 1
83bf17af
MD
718
719/* Define if struct tm has the tm_gmtoff member. */
720#define HAVE_TM_GMTOFF 1
721
722/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
723 `HAVE_STRUCT_TM_TM_ZONE' instead. */
fffa0a21
SS
724#define HAVE_TM_ZONE 1
725
726/* Define to 1 if you have the `tsearch' function. */
727/* #undef HAVE_TSEARCH */
83bf17af
MD
728
729/* Define to 1 if you don't have `tm_zone' but do have the external array
730 `tzname'. */
731/* #undef HAVE_TZNAME */
732
984263bc
MD
733/* Define to 1 if you have the `tzset' function. */
734#define HAVE_TZSET 1
735
e9cdc67a
JR
736/* Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>. */
737#define HAVE_UINTMAX_T 1
738
739/* Define to 1 if you have the `uname' function. */
740/* #undef HAVE_UNAME */
741
984263bc
MD
742/* Define to 1 if you have the <unistd.h> header file. */
743#define HAVE_UNISTD_H 1
744
fffa0a21
SS
745/* Define to 1 if you have the `unsetenv' function. */
746#define HAVE_UNSETENV 1
747
e9cdc67a
JR
748/* Define if you have the 'unsigned long long' type. */
749#define HAVE_UNSIGNED_LONG_LONG 1
750
984263bc
MD
751/* Define to 1 if you have the <utime.h> header file. */
752#define HAVE_UTIME_H 1
753
754/* Define to 1 if `utime(file, NULL)' sets file's timestamp to the present. */
755#define HAVE_UTIME_NULL 1
756
83bf17af 757/* Define to 1 if you have the `vasnprintf' function. */
fffa0a21
SS
758/* #undef HAVE_VASNPRINTF */
759
760/* Define to 1 if you have the `vasprintf' function. */
761#define HAVE_VASPRINTF 1
83bf17af 762
984263bc
MD
763/* Define to 1 if you have the `vfork' function. */
764#define HAVE_VFORK 1
765
766/* Define to 1 if you have the <vfork.h> header file. */
767/* #undef HAVE_VFORK_H */
768
769/* Define to 1 if you have the `vprintf' function. */
770#define HAVE_VPRINTF 1
771
772/* Define to 1 if you have the `wait3' function. */
773#define HAVE_WAIT3 1
774
775/* Define to 1 if you have the `waitpid' function. */
776#define HAVE_WAITPID 1
777
83bf17af
MD
778/* Define to 1 if you have the <wchar.h> header file. */
779#define HAVE_WCHAR_H 1
780
781/* Define if you have the 'wchar_t' type. */
782#define HAVE_WCHAR_T 1
783
a7c3d9d6
SS
784/* Define to 1 if you have the `wcrtomb' function. */
785#define HAVE_WCRTOMB 1
786
787/* Define to 1 if you have the `wcscoll' function. */
788#define HAVE_WCSCOLL 1
789
83bf17af
MD
790/* Define to 1 if you have the `wcslen' function. */
791#define HAVE_WCSLEN 1
792
793/* Define to 1 if you have the <wctype.h> header file. */
794#define HAVE_WCTYPE_H 1
795
796/* Define if you have the 'wint_t' type. */
797#define HAVE_WINT_T 1
798
fffa0a21
SS
799/* Define to 1 if you have the `wmemchr' function. */
800/* #undef HAVE_WMEMCHR */
801
802/* Define to 1 if you have the `wmemcpy' function. */
803/* #undef HAVE_WMEMCPY */
804
83bf17af 805/* Define to 1 if you have the `wmempcpy' function. */
fffa0a21 806/* #undef HAVE_WMEMPCPY */
83bf17af 807
984263bc
MD
808/* Define to 1 if `fork' works. */
809#define HAVE_WORKING_FORK 1
810
811/* Define to 1 if `vfork' works. */
812#define HAVE_WORKING_VFORK 1
813
e9cdc67a
JR
814/* Define to 1 if you have the <zlib.h> header file. */
815#define HAVE_ZLIB_H 1
816
83bf17af 817/* Define to 1 if the system has the type `_Bool'. */
183c614c
SS
818#define HAVE__BOOL 1
819
820/* Define to 1 if you have the `__fpending' function. */
a7c3d9d6
SS
821#define HAVE___FPENDING 1
822
823/* Define to 1 if you have the `__fsetlocking' function. */
824/* #undef HAVE___FSETLOCKING */
83bf17af 825
e9cdc67a
JR
826/* Define to 1 if you have the `__secure_getenv' function. */
827/* #undef HAVE___SECURE_GETENV */
828
fffa0a21 829#if FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR
9360f817
MD
830# define ISSLASH(C) ((C) == '/' || (C) == '\\')
831#else
832# define ISSLASH(C) ((C) == '/')
833#endif
834
e9cdc67a
JR
835/* Define to include locking code which prevents versions of CVS earlier than
836 1.12.4 directly accessing the same repositiory as this executable from
837 ignoring this executable's promotable read locks. If only CVS versions
838 1.12.4 and later will be accessing your repository directly (as a server or
839 locally), you can safely disable this option in return for fewer disk
840 accesses and a small speed increase. Disabling this option when versions of
841 CVS earlier than 1,12,4 _will_ be accessing your repository, however, is
842 *VERY* *VERY* *VERY* dangerous and could result in data loss. As such, by
843 default, CVS is compiled with this code enabled. If you are sure you would
844 like this code disabled, you can disable it by passing the
845 "--disable-lock-compatibility" option to configure or by commenting out the
846 lines below. */
847#define LOCK_COMPATIBILITY 1
848
849/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
850 slash. */
fffa0a21
SS
851#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
852
853/* If malloc(0) is != NULL, define this to 1. Otherwise define this to 0. */
854#define MALLOC_0_IS_NONNULL 1
e9cdc67a 855
183c614c 856/* Define to a substitute value for mmap()'s MAP_ANONYMOUS flag. */
a7c3d9d6 857#define MAP_ANONYMOUS MAP_ANON
183c614c 858
984263bc
MD
859/* By default, CVS stores its modules and other such items in flat text files
860 (MY_NDBM enables this). Turning off MY_NDBM causes CVS to look for a
861 system-supplied ndbm database library and use it instead. That may speed
862 things up, but the default setting generally works fine too. */
863#define MY_NDBM 1
864
865/* Define to 1 if your C compiler doesn't accept -c and -o together. */
866/* #undef NO_MINUS_C_MINUS_O */
867
868/* Define to the address where bug reports for this package should be sent. */
a7c3d9d6 869#define PACKAGE_BUGREPORT "bug-cvs@nongnu.org"
984263bc
MD
870
871/* Define to the full name of this package. */
872#define PACKAGE_NAME "Concurrent Versions System (CVS)"
873
874/* Define to the full name and version of this package. */
875#define PACKAGE_STRING "Concurrent Versions System (CVS) @VERSION@"
876
877/* Define to the one symbol short name of this package. */
878#define PACKAGE_TARNAME "cvs"
879
880/* Define to the version of this package. */
881#define PACKAGE_VERSION "@VERSION@"
882
e9cdc67a
JR
883/* Define to set a service name for PAM. This must be defined. Define to
884 `program_name', without the quotes, to use whatever name CVS was invoked
885 as. Otherwise, define to a double-quoted literal string, such as `"cvs"'.
886 */
887#define PAM_SERVICE_NAME "cvs"
888
183c614c 889/* the number of pending output bytes on stream `fp' */
a7c3d9d6 890/* #undef PENDING_OUTPUT_N_BYTES */
183c614c 891
fffa0a21
SS
892/* Define if you want CVS to be able to serve as a transparent proxy for write
893 operations. Disabling this may produce a slight performance gain on some
894 systems, at the expense of write proxy support. */
895#define PROXY_SUPPORT 1
896
984263bc
MD
897/* Path to the pr utility */
898#define PR_PROGRAM "/usr/bin/pr"
899
900/* Define to force lib/regex.c to use malloc instead of alloca. */
901#define REGEX_MALLOC 1
902
a7c3d9d6
SS
903/* Define if rename does not work for source file names with a trailing slash,
904 like the one from SunOS 4.1.1_U1. */
183c614c
SS
905/* #undef RENAME_TRAILING_SLASH_BUG */
906
984263bc
MD
907/* Define as the return type of signal handlers (`int' or `void'). */
908#define RETSIGTYPE void
909
e9cdc67a
JR
910/* The default remote shell to use, if one does not specify the CVS_RSH
911 environment variable. */
912#define RSH_DFLT "ssh"
913
984263bc
MD
914/* If you are working with a large remote repository and a 'cvs checkout' is
915 swamping your network and memory, define these to enable flow control. You
916 will end up with even less probability of a consistent checkout (see
917 Concurrency in cvs.texinfo), but CVS doesn't try to guarantee that anyway.
918 The master server process will monitor how far it is getting behind, if it
919 reaches the high water mark, it will signal the child process to stop
920 generating data when convenient (ie: no locks are held, currently at the
921 beginning of a new directory). Once the buffer has drained sufficiently to
922 reach the low water mark, it will be signalled to start again. */
923#define SERVER_FLOWCONTROL 1
924
925/* The high water mark in bytes for server flow control. Required if
926 SERVER_FLOWCONTROL is defined, and useless otherwise. */
927#define SERVER_HI_WATER (2 * 1024 * 1024)
928
929/* The low water mark in bytes for server flow control. Required if
930 SERVER_FLOWCONTROL is defined, and useless otherwise. */
931#define SERVER_LO_WATER (1 * 1024 * 1024)
932
933/* Define if you want CVS to be able to serve repositories to remote clients.
934 */
935#define SERVER_SUPPORT 1
936
c0d274d0
JM
937/* The size of a `char', as computed by sizeof. */
938#define SIZEOF_CHAR 1
939
940/* The size of a `double', as computed by sizeof. */
941#define SIZEOF_DOUBLE 8
942
943/* The size of a `float', as computed by sizeof. */
944#define SIZEOF_FLOAT 4
945
946/* The size of a `int', as computed by sizeof. */
947#define SIZEOF_INT 4
948
949/* The size of a `intmax_t', as computed by sizeof. */
950#define SIZEOF_INTMAX_T 8
951
952#if defined(__x86_64__)
953
954/* The size of a `long', as computed by sizeof. */
955#define SIZEOF_LONG 8
956
957/* The size of a `long double', as computed by sizeof. */
958#define SIZEOF_LONG_DOUBLE 16
959
960/* The size of a `ptrdiff_t', as computed by sizeof. */
961#define SIZEOF_PTRDIFF_T 8
962
963/* The size of a `size_t', as computed by sizeof. */
964#define SIZEOF_SIZE_T 8
965
966#else /* i386 assumed */
967
968/* The size of a `long', as computed by sizeof. */
969#define SIZEOF_LONG 4
970
971/* The size of a `long double', as computed by sizeof. */
972#define SIZEOF_LONG_DOUBLE 12
973
974/* The size of a `ptrdiff_t', as computed by sizeof. */
975#define SIZEOF_PTRDIFF_T 4
976
977/* The size of a `size_t', as computed by sizeof. */
978#define SIZEOF_SIZE_T 4
979
980#endif
981
982/* The size of a `long long', as computed by sizeof. */
983#define SIZEOF_LONG_LONG 8
984
985/* The size of a `short', as computed by sizeof. */
986#define SIZEOF_SHORT 2
987
988/* The size of a `wint_t', as computed by sizeof. */
989#define SIZEOF_WINT_T 4
990
991/* Define as the maximum value of type 'size_t', if the system doesn't define
992 it. */
993/* #undef SIZE_MAX */
994
995/* If using the C implementation of alloca, define if you know the
996 direction of stack growth for your system; otherwise it will be
997 automatically deduced at run-time.
998 STACK_DIRECTION > 0 => grows toward higher addresses
999 STACK_DIRECTION < 0 => grows toward lower addresses
1000 STACK_DIRECTION = 0 => direction of growth unknown */
1001/* #undef STACK_DIRECTION */
1002
984263bc
MD
1003/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
1004/* #undef STAT_MACROS_BROKEN */
1005
1006/* Define to 1 if you have the ANSI C header files. */
1007#define STDC_HEADERS 1
1008
fffa0a21
SS
1009/* Define to 1 if strerror_r returns char *. */
1010/* #undef STRERROR_R_CHAR_P */
1011
fffa0a21
SS
1012/* Enable support for the pre 1.12.1 *info scripting hook format strings.
1013 Disable this option for a smaller executable once your scripting hooks have
1014 been updated to use the new *info format strings by passing
1015 "--disable-old-info-format-support" option to configure or by commenting
1016 out the line below. */
1017#define SUPPORT_OLD_INFO_FMT_STRINGS 1
1018
984263bc
MD
1019/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1020#define TIME_WITH_SYS_TIME 1
1021
1022/* Directory used for storing temporary files, if not overridden by
1023 environment variables or the -T global option. There should be little need
1024 to change this (-T is a better mechanism if you need to use a different
1025 directory for temporary files). */
1026#define TMPDIR_DFLT "@TMPDIR_DFLT@"
1027
fffa0a21
SS
1028/* Define to 1 if your <sys/time.h> declares `struct tm'. */
1029/* #undef TM_IN_SYS_TIME */
1030
1031/* Define if tzset clobbers localtime's static buffer. */
1032/* #undef TZSET_CLOBBERS_LOCALTIME_BUFFER */
1033
1034/* Define to its maximum value if an unsigned integer type of width exactly 32
1035 bits exists and the standard includes do not define UINT32_MAX. */
1036/* #undef UINT32_MAX */
1037
984263bc
MD
1038/* The default umask to use when creating or otherwise setting file or
1039 directory permissions in the repository. Must be a value in the range of 0
1040 through 0777. For example, a value of 002 allows group rwx access and world
1041 rx access; a value of 007 allows group rwx access but no world access. This
1042 value is overridden by the value of the CVSUMASK environment variable,
1043 which is interpreted as an octal number. */
1044#define UMASK_DFLT @UMASK_DFLT@
1045
fffa0a21
SS
1046/* Define if double is the first floating point type detected with its size.
1047 */
1048#define UNIQUE_FLOAT_TYPE_DOUBLE 1
1049
1050/* Define if float is the first floating point type detected with its size. */
1051#define UNIQUE_FLOAT_TYPE_FLOAT 1
1052
1053/* Define if long double is the first floating point type detected with its
1054 size. */
1055#define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
1056
1057/* Define if char is the first integer type detected with its size. */
1058#define UNIQUE_INT_TYPE_CHAR 1
1059
1060/* Define if int is the first integer type detected with its size. */
1061#define UNIQUE_INT_TYPE_INT 1
1062
1063/* Define if intmax_t is the first integer type detected with its size. */
1064/* #undef UNIQUE_INT_TYPE_INTMAX_T */
1065
c0d274d0
JM
1066#if defined(__x86_64__)
1067
1068/* Define if long int is the first integer type detected with its size. */
1069#define UNIQUE_INT_TYPE_LONG 1
1070
1071/* Define if long long is the first integer type detected with its size. */
1072/* #undef UNIQUE_INT_TYPE_LONG_LONG */
1073
1074#else /* i386 assumed */
1075
fffa0a21
SS
1076/* Define if long int is the first integer type detected with its size. */
1077/* #undef UNIQUE_INT_TYPE_LONG */
1078
1079/* Define if long long is the first integer type detected with its size. */
1080#define UNIQUE_INT_TYPE_LONG_LONG 1
1081
c0d274d0
JM
1082#endif
1083
fffa0a21
SS
1084/* Define if ptrdiff_t is the first integer type detected with its size. */
1085/* #undef UNIQUE_INT_TYPE_PTRDIFF_T */
1086
1087/* Define if short is the first integer type detected with its size. */
1088#define UNIQUE_INT_TYPE_SHORT 1
1089
1090/* Define if size_t is the first integer type detected with its size. */
1091/* #undef UNIQUE_INT_TYPE_SIZE_T */
1092
1093/* Define if wint_t is the first integer type detected with its size. */
1094/* #undef UNIQUE_INT_TYPE_WINT_T */
1095
984263bc
MD
1096/* Define if setmode is required when writing binary data to stdout. */
1097/* #undef USE_SETMODE_STDOUT */
1098
fffa0a21
SS
1099/* Define to 1 if you want getc etc. to use unlocked I/O if available.
1100 Unlocked I/O can improve performance in unithreaded apps, but it is not
1101 safe for multithreaded apps. */
1102#define USE_UNLOCKED_IO 1
1103
984263bc
MD
1104/* Define if utime requires write access to the file (true on Windows, but not
1105 Unix). */
1106/* #undef UTIME_EXPECTS_WRITABLE */
1107
fffa0a21 1108/* Define if unsetenv() returns void, not int. */
c0d274d0 1109/* #undef VOID_UNSETENV */
fffa0a21
SS
1110
1111/* Define to 1 if your processor stores words with the most significant byte
1112 first (like Motorola and SPARC, unlike Intel and VAX). */
1113/* #undef WORDS_BIGENDIAN */
1114
984263bc
MD
1115/* Define to 1 if on AIX 3.
1116 System headers sometimes define this.
1117 We just want to avoid a redefinition error message. */
1118#ifndef _ALL_SOURCE
1119/* # undef _ALL_SOURCE */
1120#endif
1121
e9cdc67a
JR
1122/* Number of bits in a file offset, on hosts where this is settable. */
1123/* #undef _FILE_OFFSET_BITS */
1124
1125/* Enable GNU extensions on systems that have them. */
1126#ifndef _GNU_SOURCE
1127# define _GNU_SOURCE 1
1128#endif
1129
1130/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
1131/* #undef _LARGEFILE_SOURCE */
1132
1133/* Define for large files, on AIX-style hosts. */
1134/* #undef _LARGE_FILES */
1135
984263bc
MD
1136/* Define to 1 if on MINIX. */
1137/* #undef _MINIX */
1138
1139/* Define to 2 if the system does not provide POSIX.1 features except with
1140 this defined. */
1141/* #undef _POSIX_1_SOURCE */
1142
1143/* Define to 1 if you need to in order for `stat' and other things to work. */
1144/* #undef _POSIX_SOURCE */
1145
a7c3d9d6
SS
1146/* Define if you want regoff_t to be at least as wide POSIX requires. */
1147#define _REGEX_LARGE_OFFSETS 1
1148
984263bc
MD
1149/* Define to force lib/regex.c to define re_comp et al. */
1150#define _REGEX_RE_COMP 1
1151
fffa0a21
SS
1152/* Define for Solaris 2.5.1 so uint32_t typedef from <sys/synch.h>,
1153 <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the
1154 #define below would cause a syntax error. */
1155/* #undef _UINT32_T */
1156
1157/* Enable extensions on Solaris. */
1158#ifndef __EXTENSIONS__
1159# define __EXTENSIONS__ 1
1160#endif
a7c3d9d6
SS
1161#ifndef _POSIX_PTHREAD_SEMANTICS
1162# define _POSIX_PTHREAD_SEMANTICS 1
1163#endif
fffa0a21 1164
183c614c
SS
1165/* Define to rpl_ if the getcwd replacement function should be used. */
1166#define __GETCWD_PREFIX rpl_
1167
fffa0a21
SS
1168/* Define to rpl_ if the getopt replacement functions and variables should be
1169 used. */
1170#define __GETOPT_PREFIX rpl_
1171
183c614c 1172/* Define to rpl_ if the openat replacement function should be used. */
c0d274d0 1173/* #undef __OPENAT_PREFIX */
183c614c 1174
984263bc
MD
1175/* Define to empty if `const' does not conform to ANSI C. */
1176/* #undef const */
1177
fffa0a21
SS
1178/* Define to a replacement function name for fnmatch(). */
1179/* #undef fnmatch */
1180
e9cdc67a 1181/* Define to a replacement function name for getline(). */
c0d274d0 1182/* #undef getline */
e9cdc67a 1183
fffa0a21 1184/* Define to a replacement function name for getpass(). */
e9cdc67a
JR
1185#define getpass gnu_getpass
1186
fffa0a21
SS
1187/* Define to rpl_gettimeofday if the replacement function should be used. */
1188/* #undef gettimeofday */
1189
984263bc
MD
1190/* Define to `int' if <sys/types.h> doesn't define. */
1191/* #undef gid_t */
1192
fffa0a21
SS
1193/* Define to rpl_gmtime if the replacement function should be used. */
1194/* #undef gmtime */
1195
1196/* Define to `__inline__' or `__inline' if that's what the C compiler
1197 calls it, or to nothing if 'inline' is not supported under any name. */
1198#ifndef __cplusplus
1199/* #undef inline */
1200#endif
1201
1202/* Define to long or long long if <inttypes.h> and <stdint.h> don't define. */
1203/* #undef intmax_t */
1204
1205/* Define to rpl_localtime if the replacement function should be used. */
1206/* #undef localtime */
1207
e9cdc67a
JR
1208/* Define to rpl_malloc if the replacement function should be used. */
1209/* #undef malloc */
1210
fffa0a21
SS
1211/* Define to a type if <wchar.h> does not define. */
1212/* #undef mbstate_t */
1213
183c614c
SS
1214/* Define to rpl_mkdir if the replacement function should be used. */
1215/* #undef mkdir */
1216
e9cdc67a
JR
1217/* Define to rpl_mkstemp if the replacement function should be used. */
1218/* #undef mkstemp */
1219
fffa0a21
SS
1220/* Define to rpl_mktime if the replacement function should be used. */
1221#define mktime rpl_mktime
1222
984263bc
MD
1223/* Define to `int' if <sys/types.h> does not define. */
1224/* #undef mode_t */
1225
83bf17af 1226/* Define to the name of the strftime replacement function. */
fffa0a21
SS
1227#define my_strftime nstrftime
1228
1229/* Define to rpl_nanosleep if the replacement function should be used. */
1230/* #undef nanosleep */
83bf17af 1231
984263bc
MD
1232/* Define to `int' if <sys/types.h> does not define. */
1233/* #undef pid_t */
1234
e9cdc67a
JR
1235/* Define to rpl_realloc if the replacement function should be used. */
1236/* #undef realloc */
1237
183c614c
SS
1238/* Define to rpl_rename if the replacement function should be used. */
1239/* #undef rename */
1240
e9cdc67a
JR
1241/* Define to equivalent of C99 restrict keyword, or to nothing if this is not
1242 supported. Do not define if restrict is supported directly. */
1243#define restrict __restrict
1244
fffa0a21 1245/* Define to rpl_select if the replacement function should be used. */
183c614c 1246/* #undef select */
fffa0a21
SS
1247
1248/* Define to empty if the C compiler doesn't support this keyword. */
1249/* #undef signed */
1250
1251/* Define to `unsigned' if <sys/types.h> does not define. */
1252/* #undef size_t */
1253
e9cdc67a
JR
1254/* Define as a signed type of the same size as size_t. */
1255/* #undef ssize_t */
984263bc 1256
a7c3d9d6
SS
1257/* Define to rpl_strcasecmp always. */
1258#define strcasecmp rpl_strcasecmp
1259
fffa0a21
SS
1260/* Define to rpl_tzset if the wrapper function should be used. */
1261/* #undef tzset */
1262
984263bc
MD
1263/* Define to `int' if <sys/types.h> doesn't define. */
1264/* #undef uid_t */
1265
fffa0a21
SS
1266/* Define to the type of a unsigned integer type of width exactly 32 bits if
1267 such a type exists and the standard includes do not define it. */
1268/* #undef uint32_t */
1269
e9cdc67a
JR
1270/* Define to unsigned long or unsigned long long if <stdint.h> and
1271 <inttypes.h> don't define. */
1272/* #undef uintmax_t */
1273
984263bc
MD
1274/* Define as `fork' if `vfork' does not work. */
1275/* #undef vfork */