forked from vancegroup/freealut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h.cmake_in
49 lines (35 loc) · 1.46 KB
/
config.h.cmake_in
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
/* Define to 1 if we are using a GCC with symbol visibility support. */
#cmakedefine HAVE_GCC_VISIBILITY 1
/* Define to 1 if the system has the type `__int8'. */
#cmakedefine HAVE___INT8 1
/* Define to 1 if your C compiler supports __attribute__. */
#cmakedefine HAVE___ATTRIBUTE__ 1
/* Define to 1 if you have the `stat' function. */
#cmakedefine HAVE_STAT 1
/* Define to 1 if you have the `_stat' function. */
#cmakedefine HAVE__STAT 1
/* Define to 1 if you have the `nanosleep' function. */
#cmakedefine HAVE_NANOSLEEP 1
/* Define to 1 if you have the `usleep' function. */
#cmakedefine HAVE_USLEEP 1
/* Define to 1 if you have the `Sleep' function. */
#cmakedefine HAVE_SLEEP 1
/* Define to 1 if you have the <stdint.h> header file. */
#cmakedefine HAVE_STDINT_H 1
/* Define to 1 if you have the <unistd.h> header file. */
#cmakedefine HAVE_UNISTD_H 1
/* Define to 1 if you have the <time.h> header file. */
#cmakedefine HAVE_TIME_H 1
/* Define to 1 if you have the <windows.h> header file. */
#cmakedefine HAVE_WINDOWS_H 1
/* We could possibly need struct timespec and random(), which are not ANSI.
Define to 500 if Single Unix conformance is wanted, 600 for sixth revision. */
#if HAVE_NANOSLEEP && HAVE_TIME_H
#define _XOPEN_SOURCE 600
/* We might need nanosleep, which is a POSIX IEEE Std 1003.1b-1993 feature.
Define to the POSIX version that should be used. */
#define _POSIX_C_SOURCE 200112L
#endif
#ifndef ALUT_BUILD_STATIC
#define ALUT_BUILD_LIBRARY
#endif