blob: a7f3dd89fffac445378d9c514c1646987dddba7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
fics - An internet chess server.
Copyright (C) 1993 Richard V. Nash
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
This file contains descriptive text for the C preprocessor macros
that are missing in the original acconfig.h of the autoconf
distribution, but used in the configure.in of the FICS distribution.
It is used *only* by the autoheader program contained in the
autoconf distribution.
Leave the following blank line there!! Autoheader needs it. */
/* Define this to be the return value of the time() function. */
#undef time_t
/* Undefine, if your compiler doesn't support prototypes */
#undef HAVE_PROTOTYPES
/* Define, if you have a statfs() function which fills a struct
statfs, declared in sys/vfs.h. (NeXTStep) */
#undef HAVE_STATFS_FILLING_STRUCT_STATFS
/* Define, if you have a statfs() function which fills a struct
fs_data, declared in sys/mount.h. (Ultrix) */
#undef HAVE_STATFS_FILLING_STRUCT_FS_DATA
/* Define, if you have crypt() and it is declared in either
crypt.h or unistd.h. */
#undef HAVE_CRYPT_DECLARED
/* Define this to be tv_usec, if your struct rusage has
a member ru_utime.tv_usec.
Define this to be tv_nsec, if your struct rusage has
a member ru_utime.tv_nsec. */
#undef TV_USEC
|