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