1275970Scy/* evconfig-private.h template - see "Configuration Header Templates" */
2275970Scy/* in AC manual.  Kevin Bowling <kevin.bowling@kev009.com */
3275970Scy#ifndef EVCONFIG_PRIVATE_H_INCLUDED_
4275970Scy#define EVCONFIG_PRIVATE_H_INCLUDED_
5275970Scy
6275970Scy/* Enable extensions on AIX 3, Interix.  */
7275970Scy#ifndef _ALL_SOURCE
8275970Scy# undef _ALL_SOURCE
9275970Scy#endif
10275970Scy/* Enable GNU extensions on systems that have them.  */
11275970Scy#ifndef _GNU_SOURCE
12275970Scy# undef _GNU_SOURCE
13275970Scy#endif
14275970Scy/* Enable threading extensions on Solaris.  */
15275970Scy#ifndef _POSIX_PTHREAD_SEMANTICS
16275970Scy# undef _POSIX_PTHREAD_SEMANTICS
17275970Scy#endif
18275970Scy/* Enable extensions on HP NonStop.  */
19275970Scy#ifndef _TANDEM_SOURCE
20275970Scy# undef _TANDEM_SOURCE
21275970Scy#endif
22275970Scy/* Enable general extensions on Solaris.  */
23275970Scy#ifndef __EXTENSIONS__
24275970Scy# undef __EXTENSIONS__
25275970Scy#endif
26275970Scy
27275970Scy/* Number of bits in a file offset, on hosts where this is settable. */
28275970Scy#undef _FILE_OFFSET_BITS
29275970Scy/* Define for large files, on AIX-style hosts. */
30275970Scy#undef _LARGE_FILES
31275970Scy
32275970Scy/* Define to 1 if on MINIX. */
33275970Scy#ifndef _MINIX
34275970Scy#undef _MINIX
35275970Scy#endif
36275970Scy
37275970Scy/* Define to 2 if the system does not provide POSIX.1 features except with
38275970Scy   this defined. */
39275970Scy#ifndef _POSIX_1_SOURCE
40275970Scy#undef _POSIX_1_SOURCE
41275970Scy#endif
42275970Scy
43275970Scy/* Define to 1 if you need to in order for `stat' and other things to work. */
44275970Scy#ifndef _POSIX_SOURCE
45275970Scy#undef _POSIX_SOURCE
46275970Scy#endif
47275970Scy
48275970Scy#endif
49