diff options
Diffstat (limited to 'FICS/acconfig.h')
-rw-r--r-- | FICS/acconfig.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/FICS/acconfig.h b/FICS/acconfig.h new file mode 100644 index 0000000..a7f3dd8 --- /dev/null +++ b/FICS/acconfig.h @@ -0,0 +1,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 |