xref: /netbsd-src/external/gpl2/xcvs/include/config.h (revision 274254cdae52594c1aa480a736aef78313d15c9c)
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 you have the `getpagesize' function. */
339 #define HAVE_GETPAGESIZE 1
340 
341 /* Define to 1 if you have the `getpwnam_r' function. */
342 #define HAVE_GETPWNAM_R 1
343 
344 /* Define if you have the getspnam function. */
345 /* #undef HAVE_GETSPNAM */
346 
347 /* Define if the GNU gettext() function is already present or preinstalled. */
348 /* #undef HAVE_GETTEXT */
349 
350 /* Define to 1 if you have the `gettimeofday' function. */
351 #define HAVE_GETTIMEOFDAY 1
352 
353 /* Define to 1 if you have the <glob.h> header file. */
354 #define HAVE_GLOB_H 1
355 
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 #define HAVE_GSSAPI_GSSAPI_H 1
364 
365 /* Define to 1 if you have the <gssapi.h> header file. */
366 #define HAVE_GSSAPI_H 1
367 
368 /* Define if you have the iconv() function. */
369 #define HAVE_ICONV 1
370 
371 /* Define to 1 if you have the `initgroups' function. */
372 #define HAVE_INITGROUPS 1
373 
374 /* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
375 #define HAVE_INTMAX_T 1
376 
377 /* Define if <inttypes.h> exists and doesn't clash with <sys/types.h>. */
378 #define HAVE_INTTYPES_H 1
379 
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 
384 /* Define to 1 if you have the <io.h> header file. */
385 /* #undef HAVE_IO_H */
386 
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 
393 /* Define to 1 if you have the `isascii' function. */
394 #define HAVE_ISASCII 1
395 
396 /* Define to 1 if you have the `isblank' function. */
397 #define HAVE_ISBLANK 1
398 
399 /* Define to 1 if you have the `iswprint' function. */
400 #define HAVE_ISWPRINT 1
401 
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 
411 /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
412 #define HAVE_LANGINFO_CODESET 1
413 
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 
420 /* Define to 1 if you have the `nsl' library (-lnsl). */
421 /* #undef HAVE_LIBNSL */
422 
423 /* Define to 1 if you have the <locale.h> header file. */
424 #define HAVE_LOCALE_H 1
425 
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 
432 /* Define if you have the 'long double' type. */
433 #define HAVE_LONG_DOUBLE 1
434 
435 /* Define to 1 if you support file names longer than 14 characters. */
436 #define HAVE_LONG_FILE_NAMES 1
437 
438 /* Define if you have the 'long long' type. */
439 #define HAVE_LONG_LONG 1
440 
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 
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 
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. */
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
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 
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 
476 /* Define to 1 if you have the `mempcpy' function. */
477 /* #undef HAVE_MEMPCPY */
478 
479 /* Define to 1 if you have the `memrchr' function. */
480 /* #undef HAVE_MEMRCHR */
481 
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 
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 
494 /* Define to 1 if you have a working `mmap' system call. */
495 #define HAVE_MMAP 1
496 
497 /* Define to 1 if you have the `nanotime' function. */
498 /* #undef HAVE_NANOTIME */
499 
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 
506 /* Define to 1 if you have the `openat' function. */
507 /* #undef HAVE_OPENAT */
508 
509 /* Define to 1 if you have the <OS.h> header file. */
510 /* #undef HAVE_OS_H */
511 
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 
517 /* Define to 1 if pam/pam_appl.h is available */
518 /* #undef HAVE_PAM_PAM_APPL_H */
519 
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    */
524 /* #undef HAVE_PARTLY_WORKING_GETCWD */
525 
526 /* Define to 1 if you have the `posix_memalign' function. */
527 #define HAVE_POSIX_MEMALIGN 1
528 
529 /* Define to 1 if the `printf' function supports the %p format for printing
530    pointers. */
531 #define HAVE_PRINTF_PTR 1
532 
533 /* Define to 1 if the system has the type `ptrdiff_t'. */
534 #define HAVE_PTRDIFF_T 1
535 
536 /* Define to 1 if you have the `readlink' function. */
537 #define HAVE_READLINK 1
538 
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 
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 
555 /* Define to 1 if you have the `resolvepath' function. */
556 /* #undef HAVE_RESOLVEPATH */
557 
558 /* Define to 1 if you have the `rpmatch' function. */
559 /* #undef HAVE_RPMATCH */
560 
561 /* Define to 1 if you have run the test for working tzset. */
562 #define HAVE_RUN_TZSET_TEST 1
563 
564 /* Define to 1 if you have the <search.h> header file. */
565 /* #undef HAVE_SEARCH_H */
566 
567 /* Define to 1 if security/pam_appl.h is available */
568 /* #undef HAVE_SECURITY_PAM_APPL_H */
569 
570 /* Define to 1 if you have the `setenv' function. */
571 #define HAVE_SETENV 1
572 
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 
582 /* Define to 1 if you have the `siginterrupt' function. */
583 #define HAVE_SIGINTERRUPT 1
584 
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 
594 /* Define to 1 if you have the `snprintf' function. */
595 #define HAVE_SNPRINTF 1
596 
597 /* Define to 1 if stdbool.h conforms to C99. */
598 #define HAVE_STDBOOL_H 1
599 
600 /* Define to 1 if you have the <stdint.h> header file. */
601 #define HAVE_STDINT_H 1
602 
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 
607 /* Define to 1 if you have the <stdio_ext.h> header file. */
608 /* #undef HAVE_STDIO_EXT_H */
609 
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 
616 /* Define to 1 if you have the `strdup' function. */
617 #define HAVE_STRDUP 1
618 
619 /* Define to 1 if you have the `strerror' function. */
620 #define HAVE_STRERROR 1
621 
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 
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 
634 /* Define to 1 if you have the `strncasecmp' function. */
635 #define HAVE_STRNCASECMP 1
636 
637 /* Define to 1 if you have the `strtol' function. */
638 #define HAVE_STRTOL 1
639 
640 /* Define to 1 if you have the `strtoul' function. */
641 #define HAVE_STRTOUL 1
642 
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 
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 
653 /* Define if struct timespec is declared in <time.h>. */
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 
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 
665 /* Define to 1 if you have the <sys/cdefs.h> header file. */
666 #define HAVE_SYS_CDEFS_H 1
667 
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 
675 /* Define to 1 if you have the <sys/inttypes.h> header file. */
676 #define HAVE_SYS_INTTYPES_H 1
677 
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 
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 
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 
712 /* Define to 1 if you have the `timezone' function. */
713 #define HAVE_TIMEZONE 1
714 
715 /* Define to 1 if localtime_r, etc. have the type signatures that POSIX
716    requires. */
717 #define HAVE_TIME_R_POSIX 1
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. */
724 #define HAVE_TM_ZONE 1
725 
726 /* Define to 1 if you have the `tsearch' function. */
727 /* #undef HAVE_TSEARCH */
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 
733 /* Define to 1 if you have the `tzset' function. */
734 #define HAVE_TZSET 1
735 
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 
742 /* Define to 1 if you have the <unistd.h> header file. */
743 #define HAVE_UNISTD_H 1
744 
745 /* Define to 1 if you have the `unsetenv' function. */
746 #define HAVE_UNSETENV 1
747 
748 /* Define if you have the 'unsigned long long' type. */
749 #define HAVE_UNSIGNED_LONG_LONG 1
750 
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 
757 /* Define to 1 if you have the `vasnprintf' function. */
758 /* #undef HAVE_VASNPRINTF */
759 
760 /* Define to 1 if you have the `vasprintf' function. */
761 #define HAVE_VASPRINTF 1
762 
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 
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 
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 
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 
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 
805 /* Define to 1 if you have the `wmempcpy' function. */
806 /* #undef HAVE_WMEMPCPY */
807 
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 
814 /* Define to 1 if you have the <zlib.h> header file. */
815 #define HAVE_ZLIB_H 1
816 
817 /* Define to 1 if the system has the type `_Bool'. */
818 #define HAVE__BOOL 1
819 
820 /* Define to 1 if you have the `__fpending' function. */
821 /* #undef HAVE___FPENDING */
822 
823 /* Define to 1 if you have the `__fsetlocking' function. */
824 /* #undef HAVE___FSETLOCKING */
825 
826 /* Define to 1 if you have the `__secure_getenv' function. */
827 /* #undef HAVE___SECURE_GETENV */
828 
829 #if FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR
830 # define ISSLASH(C) ((C) == '/' || (C) == '\\')
831 #else
832 # define ISSLASH(C) ((C) == '/')
833 #endif
834 
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. */
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
855 
856 /* Define to a substitute value for mmap()'s MAP_ANONYMOUS flag. */
857 #define MAP_ANONYMOUS MAP_ANON
858 
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. */
869 #define PACKAGE_BUGREPORT "bug-cvs@nongnu.org"
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) 1.12.13"
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 "1.12.13"
882 
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 
889 /* the number of pending output bytes on stream `fp' */
890 #define PENDING_OUTPUT_N_BYTES fp->_p - fp->_bf._base
891 
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 
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 
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. */
905 /* #undef RENAME_TRAILING_SLASH_BUG */
906 
907 /* Define as the return type of signal handlers (`int' or `void'). */
908 #define RETSIGTYPE void
909 
910 /* The default remote shell to use, if one does not specify the CVS_RSH
911    environment variable. */
912 #define RSH_DFLT "ssh"
913 
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 
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 /* The size of a `long', as computed by sizeof. */
953 #define SIZEOF_LONG 8
954 
955 /* The size of a `long double', as computed by sizeof. */
956 #define SIZEOF_LONG_DOUBLE 16
957 
958 /* The size of a `long long', as computed by sizeof. */
959 #define SIZEOF_LONG_LONG 8
960 
961 /* The size of a `ptrdiff_t', as computed by sizeof. */
962 #define SIZEOF_PTRDIFF_T 8
963 
964 /* The size of a `short', as computed by sizeof. */
965 #define SIZEOF_SHORT 2
966 
967 /* The size of a `size_t', as computed by sizeof. */
968 #define SIZEOF_SIZE_T 8
969 
970 /* The size of a `wint_t', as computed by sizeof. */
971 #define SIZEOF_WINT_T 4
972 
973 /* Define as the maximum value of type 'size_t', if the system doesn't define
974    it. */
975 /* #undef SIZE_MAX */
976 
977 /* If using the C implementation of alloca, define if you know the
978    direction of stack growth for your system; otherwise it will be
979    automatically deduced at run-time.
980 	STACK_DIRECTION > 0 => grows toward higher addresses
981 	STACK_DIRECTION < 0 => grows toward lower addresses
982 	STACK_DIRECTION = 0 => direction of growth unknown */
983 /* #undef STACK_DIRECTION */
984 
985 /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
986 /* #undef STAT_MACROS_BROKEN */
987 
988 /* Define to 1 if you have the ANSI C header files. */
989 #define STDC_HEADERS 1
990 
991 /* Define to 1 if strerror_r returns char *. */
992 /* #undef STRERROR_R_CHAR_P */
993 
994 /* Enable support for the pre 1.12.1 *info scripting hook format strings.
995    Disable this option for a smaller executable once your scripting hooks have
996    been updated to use the new *info format strings by passing
997    "--disable-old-info-format-support" option to configure or by commenting
998    out the line below. */
999 #define SUPPORT_OLD_INFO_FMT_STRINGS 1
1000 
1001 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1002 #define TIME_WITH_SYS_TIME 1
1003 
1004 /* Directory used for storing temporary files, if not overridden by
1005    environment variables or the -T global option. There should be little need
1006    to change this (-T is a better mechanism if you need to use a different
1007    directory for temporary files). */
1008 #define TMPDIR_DFLT "/tmp"
1009 
1010 /* Define to 1 if your <sys/time.h> declares `struct tm'. */
1011 /* #undef TM_IN_SYS_TIME */
1012 
1013 /* Define if tzset clobbers localtime's static buffer. */
1014 /* #undef TZSET_CLOBBERS_LOCALTIME_BUFFER */
1015 
1016 /* Define to its maximum value if an unsigned integer type of width exactly 32
1017    bits exists and the standard includes do not define UINT32_MAX. */
1018 /* #undef UINT32_MAX */
1019 
1020 /* The default umask to use when creating or otherwise setting file or
1021    directory permissions in the repository. Must be a value in the range of 0
1022    through 0777. For example, a value of 002 allows group rwx access and world
1023    rx access; a value of 007 allows group rwx access but no world access. This
1024    value is overridden by the value of the CVSUMASK environment variable,
1025    which is interpreted as an octal number. */
1026 #define UMASK_DFLT 002
1027 
1028 /* Define if double is the first floating point type detected with its size.
1029    */
1030 #define UNIQUE_FLOAT_TYPE_DOUBLE 1
1031 
1032 /* Define if float is the first floating point type detected with its size. */
1033 #define UNIQUE_FLOAT_TYPE_FLOAT 1
1034 
1035 /* Define if long double is the first floating point type detected with its
1036    size. */
1037 #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
1038 
1039 /* Define if char is the first integer type detected with its size. */
1040 #define UNIQUE_INT_TYPE_CHAR 1
1041 
1042 /* Define if int is the first integer type detected with its size. */
1043 #define UNIQUE_INT_TYPE_INT 1
1044 
1045 /* Define if intmax_t is the first integer type detected with its size. */
1046 /* #undef UNIQUE_INT_TYPE_INTMAX_T */
1047 
1048 /* Define if long int is the first integer type detected with its size. */
1049 #define UNIQUE_INT_TYPE_LONG 1
1050 
1051 /* Define if long long is the first integer type detected with its size. */
1052 /* #undef UNIQUE_INT_TYPE_LONG_LONG */
1053 
1054 /* Define if ptrdiff_t is the first integer type detected with its size. */
1055 /* #undef UNIQUE_INT_TYPE_PTRDIFF_T */
1056 
1057 /* Define if short is the first integer type detected with its size. */
1058 #define UNIQUE_INT_TYPE_SHORT 1
1059 
1060 /* Define if size_t is the first integer type detected with its size. */
1061 /* #undef UNIQUE_INT_TYPE_SIZE_T */
1062 
1063 /* Define if wint_t is the first integer type detected with its size. */
1064 /* #undef UNIQUE_INT_TYPE_WINT_T */
1065 
1066 /* Define if setmode is required when writing binary data to stdout. */
1067 /* #undef USE_SETMODE_STDOUT */
1068 
1069 /* Define to 1 if you want getc etc. to use unlocked I/O if available.
1070    Unlocked I/O can improve performance in unithreaded apps, but it is not
1071    safe for multithreaded apps. */
1072 #define USE_UNLOCKED_IO 1
1073 
1074 /* Define if utime requires write access to the file (true on Windows, but not
1075    Unix). */
1076 /* #undef UTIME_EXPECTS_WRITABLE */
1077 
1078 /* Define if unsetenv() returns void, not int. */
1079 /* #undef VOID_UNSETENV */
1080 
1081 /* Define to 1 if your processor stores words with the most significant byte
1082    first (like Motorola and SPARC, unlike Intel and VAX). */
1083 /* #undef WORDS_BIGENDIAN */
1084 
1085 /* Define to 1 if on AIX 3.
1086    System headers sometimes define this.
1087    We just want to avoid a redefinition error message.  */
1088 #ifndef _ALL_SOURCE
1089 /* # undef _ALL_SOURCE */
1090 #endif
1091 
1092 /* Number of bits in a file offset, on hosts where this is settable. */
1093 /* #undef _FILE_OFFSET_BITS */
1094 
1095 /* Enable GNU extensions on systems that have them.  */
1096 #ifndef _GNU_SOURCE
1097 # define _GNU_SOURCE 1
1098 #endif
1099 
1100 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
1101 /* #undef _LARGEFILE_SOURCE */
1102 
1103 /* Define for large files, on AIX-style hosts. */
1104 /* #undef _LARGE_FILES */
1105 
1106 /* Define to 1 if on MINIX. */
1107 /* #undef _MINIX */
1108 
1109 /* Define to 2 if the system does not provide POSIX.1 features except with
1110    this defined. */
1111 /* #undef _POSIX_1_SOURCE */
1112 
1113 /* Define to 1 if you need to in order for `stat' and other things to work. */
1114 /* #undef _POSIX_SOURCE */
1115 
1116 /* Define if you want regoff_t to be at least as wide POSIX requires. */
1117 #define _REGEX_LARGE_OFFSETS 1
1118 
1119 /* Define to force lib/regex.c to define re_comp et al. */
1120 #define _REGEX_RE_COMP 1
1121 
1122 /* Define for Solaris 2.5.1 so uint32_t typedef from <sys/synch.h>,
1123    <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the
1124    #define below would cause a syntax error. */
1125 /* #undef _UINT32_T */
1126 
1127 /* Enable extensions on Solaris.  */
1128 #ifndef __EXTENSIONS__
1129 # define __EXTENSIONS__ 1
1130 #endif
1131 #ifndef _POSIX_PTHREAD_SEMANTICS
1132 # define _POSIX_PTHREAD_SEMANTICS 1
1133 #endif
1134 
1135 /* Define to rpl_ if the getcwd replacement function should be used. */
1136 /* #undef __GETCWD_PREFIX */
1137 
1138 /* Define to rpl_ if the getopt replacement functions and variables should be
1139    used. */
1140 #define __GETOPT_PREFIX rpl_
1141 
1142 /* Define to rpl_ if the openat replacement function should be used. */
1143 #define __OPENAT_PREFIX rpl_
1144 
1145 /* Define to empty if `const' does not conform to ANSI C. */
1146 /* #undef const */
1147 
1148 /* Define to a replacement function name for fnmatch(). */
1149 /* #undef fnmatch */
1150 
1151 /* Define to a replacement function name for getline(). */
1152 /* #undef getline */
1153 
1154 /* Define to a replacement function name for getpass(). */
1155 /* #undef getpass */
1156 
1157 /* Define to rpl_gettimeofday if the replacement function should be used. */
1158 /* #undef gettimeofday */
1159 
1160 /* Define to `int' if <sys/types.h> doesn't define. */
1161 /* #undef gid_t */
1162 
1163 /* Define to rpl_gmtime if the replacement function should be used. */
1164 /* #undef gmtime */
1165 
1166 /* Define to `__inline__' or `__inline' if that's what the C compiler
1167    calls it, or to nothing if 'inline' is not supported under any name.  */
1168 #ifndef __cplusplus
1169 /* #undef inline */
1170 #endif
1171 
1172 /* Define to long or long long if <inttypes.h> and <stdint.h> don't define. */
1173 /* #undef intmax_t */
1174 
1175 /* Define to rpl_localtime if the replacement function should be used. */
1176 /* #undef localtime */
1177 
1178 /* Define to rpl_malloc if the replacement function should be used. */
1179 /* #undef malloc */
1180 
1181 /* Define to a type if <wchar.h> does not define. */
1182 /* #undef mbstate_t */
1183 
1184 /* Define to rpl_mkdir if the replacement function should be used. */
1185 /* #undef mkdir */
1186 
1187 /* Define to rpl_mkstemp if the replacement function should be used. */
1188 /* #undef mkstemp */
1189 
1190 /* Define to rpl_mktime if the replacement function should be used. */
1191 #define mktime rpl_mktime
1192 
1193 /* Define to `int' if <sys/types.h> does not define. */
1194 /* #undef mode_t */
1195 
1196 /* Define to the name of the strftime replacement function. */
1197 #define my_strftime nstrftime
1198 
1199 /* Define to rpl_nanosleep if the replacement function should be used. */
1200 /* #undef nanosleep */
1201 
1202 /* Define to `int' if <sys/types.h> does not define. */
1203 /* #undef pid_t */
1204 
1205 /* Define to rpl_realloc if the replacement function should be used. */
1206 /* #undef realloc */
1207 
1208 /* Define to rpl_rename if the replacement function should be used. */
1209 /* #undef rename */
1210 
1211 /* Define to equivalent of C99 restrict keyword, or to nothing if this is not
1212    supported. Do not define if restrict is supported directly. */
1213 #define restrict __restrict
1214 
1215 /* Define to rpl_select if the replacement function should be used. */
1216 /* #undef select */
1217 
1218 /* Define to empty if the C compiler doesn't support this keyword. */
1219 /* #undef signed */
1220 
1221 /* Define to `unsigned' if <sys/types.h> does not define. */
1222 /* #undef size_t */
1223 
1224 /* Define as a signed type of the same size as size_t. */
1225 /* #undef ssize_t */
1226 
1227 /* Define to rpl_strcasecmp always. */
1228 /* #undef strcasecmp */
1229 
1230 /* Define to rpl_tzset if the wrapper function should be used. */
1231 /* #undef tzset */
1232 
1233 /* Define to `int' if <sys/types.h> doesn't define. */
1234 /* #undef uid_t */
1235 
1236 /* Define to the type of a unsigned integer type of width exactly 32 bits if
1237    such a type exists and the standard includes do not define it. */
1238 /* #undef uint32_t */
1239 
1240 /* Define to unsigned long or unsigned long long if <stdint.h> and
1241    <inttypes.h> don't define. */
1242 /* #undef uintmax_t */
1243 
1244 /* Define as `fork' if `vfork' does not work. */
1245 /* #undef vfork */
1246