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