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