dropping SDL for the cross-platform version almost done
[dosdemo] / libs / mikmod / config.h
1 #ifndef MIKMOD_CONFIG_H_
2 #define MIKMOD_CONFIG_H_
3
4 #define HAVE_INTTYPES_H 1
5 #define HAVE_LIMITS_H 1
6 #define HAVE_MALLOC_H 1
7 #define HAVE_MEMCMP 1
8 #define HAVE_MEMORY_H 1
9 #define HAVE_POSIX_MEMALIGN 1
10 #define HAVE_SETENV 1
11 #define HAVE_STDLIB_H 1
12 #define HAVE_STRINGS_H 1
13 #define HAVE_STRING_H 1
14 #define HAVE_STRSTR 1
15
16 #if !defined(_MSC_VER) || _MSC_VER >= 1800
17 #define HAVE_STDINT_H 1
18 #define HAVE_SNPRINTF 1
19 #endif
20
21 #ifdef __unix__
22 #define HAVE_DLFCN_H 1
23 #define HAVE_RTLD_GLOBAL 1
24 #define HAVE_FCNTL_H 1
25 #define HAVE_SYS_IOCTL_H 1
26 #define HAVE_SYS_STAT_H 1
27 #define HAVE_SYS_TYPES_H 1
28 #define HAVE_SYS_WAIT_H 1
29 #define HAVE_UNISTD_H 1
30 #define HAVE_PTHREAD 1
31 #endif
32
33 #define STDC_HEADERS 1
34
35 #ifdef __linux__
36 #define DRV_ALSA        1
37 #endif
38
39 #ifdef __FreeBSD__
40 #define DRV_OSS         1
41 #endif
42
43 #ifdef __sgi__
44 #define DRV_SGI         1
45 #endif
46
47 #ifdef _WIN32
48 #define DRV_DS  1
49 #endif
50
51 #endif  /* MIKMOD_CONFIG_H_ */