1*b50261e2SCy Schubert
2*b50261e2SCy Schubert#ifndef EVCONFIG_PRIVATE_H_INCLUDED_
3*b50261e2SCy Schubert#define EVCONFIG_PRIVATE_H_INCLUDED_
4*b50261e2SCy Schubert
5*b50261e2SCy Schubert/* Enable extensions on AIX 3, Interix.  */
6*b50261e2SCy Schubert#cmakedefine _ALL_SOURCE
7*b50261e2SCy Schubert
8*b50261e2SCy Schubert/* Enable GNU extensions on systems that have them.  */
9*b50261e2SCy Schubert#cmakedefine _GNU_SOURCE 1
10*b50261e2SCy Schubert
11*b50261e2SCy Schubert/* Enable threading extensions on Solaris.  */
12*b50261e2SCy Schubert#cmakedefine _POSIX_PTHREAD_SEMANTICS 1
13*b50261e2SCy Schubert
14*b50261e2SCy Schubert/* Enable extensions on HP NonStop.  */
15*b50261e2SCy Schubert#cmakedefine _TANDEM_SOURCE 1
16*b50261e2SCy Schubert
17*b50261e2SCy Schubert/* Enable general extensions on Solaris.  */
18*b50261e2SCy Schubert#cmakedefine __EXTENSIONS__
19*b50261e2SCy Schubert
20*b50261e2SCy Schubert/* Number of bits in a file offset, on hosts where this is settable. */
21*b50261e2SCy Schubert#cmakedefine _FILE_OFFSET_BITS 1
22*b50261e2SCy Schubert/* Define for large files, on AIX-style hosts. */
23*b50261e2SCy Schubert#cmakedefine _LARGE_FILES 1
24*b50261e2SCy Schubert
25*b50261e2SCy Schubert/* Define to 1 if on MINIX. */
26*b50261e2SCy Schubert#cmakedefine _MINIX 1
27*b50261e2SCy Schubert
28*b50261e2SCy Schubert/* Define to 2 if the system does not provide POSIX.1 features except with
29*b50261e2SCy Schubert   this defined. */
30*b50261e2SCy Schubert#cmakedefine _POSIX_1_SOURCE 1
31*b50261e2SCy Schubert
32*b50261e2SCy Schubert/* Define to 1 if you need to in order for `stat' and other things to work. */
33*b50261e2SCy Schubert#cmakedefine _POSIX_SOURCE 1
34*b50261e2SCy Schubert
35*b50261e2SCy Schubert/* Enable POSIX.2 extensions on QNX for getopt */
36*b50261e2SCy Schubert#ifdef __QNX__
37*b50261e2SCy Schubert#cmakedefine __EXT_POSIX2 1
38*b50261e2SCy Schubert#endif
39*b50261e2SCy Schubert
40*b50261e2SCy Schubert#endif
41