24caf3c954089bf03a8df0258add240853cbaeeb
[dosdemo] / libs / mikmod / config.h
1 #define HAVE_LIMITS_H 1
2 #define HAVE_MEMCMP 1
3 #define HAVE_STDLIB_H 1
4 #define HAVE_STRING_H 1
5 #define HAVE_STRSTR 1
6
7 #ifdef DOS
8 #define DRV_SB 1
9 #define DRV_ULTRA 1
10 #define DRV_WSS 1
11
12 #define HAVE_UNISTD_H 1
13 #define HAVE_FCNTL_H 1
14 #define HAVE_SYS_STAT_H 1
15 #define HAVE_SYS_TYPES_H 1
16 #define HAVE_SYS_IOCTL_H 1
17 #endif
18
19 #if defined(__unix__) || defined(__APPLE__)
20 #define DRV_SDL 1
21
22 #define HAVE_FCNTL_H 1
23 #define HAVE_INTTYPES_H 1
24 #define HAVE_SYS_IOCTL_H 1
25 #define HAVE_SNPRINTF 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_POSIX_MEMALIGN 1
31 #define HAVE_PTHREAD 1
32 #define HAVE_SETENV 1
33 #define HAVE_SRANDOM 1
34
35 #define MIKMOD_UNIX 1
36 #endif
37
38
39 #if defined(WIN32)
40 #define DRV_SDL 1
41
42 #define HAVE_WINDOWS_H 1
43 #define HAVE_MALLOC_H 1
44
45 #define NO_SDL_CONFIG 1
46 #endif
47
48 #undef MIKMOD_DEBUG
49
50 /* disable the high quality mixer (build only with the standart mixer) */
51 #undef NO_HQMIXER
52
53 /* Name of package */
54 #undef PACKAGE
55 /* Define to the address where bug reports for this package should be sent. */
56 #undef PACKAGE_BUGREPORT
57 /* Define to the full name of this package. */
58 #undef PACKAGE_NAME
59 /* Define to the full name and version of this package. */
60 #undef PACKAGE_STRING
61 /* Define to the one symbol short name of this package. */
62 #undef PACKAGE_TARNAME
63 /* Define to the home page for this package. */
64 #undef PACKAGE_URL
65 /* Define to the version of this package. */
66 #undef PACKAGE_VERSION
67
68 /* Version number of package */
69 #undef VERSION
70
71 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
72    significant byte first (like Motorola and SPARC, unlike Intel). */
73 #if defined AC_APPLE_UNIVERSAL_BUILD
74 # if defined __BIG_ENDIAN__
75 #  define WORDS_BIGENDIAN 1
76 # endif
77 #else
78 # ifndef WORDS_BIGENDIAN
79 #  undef WORDS_BIGENDIAN
80 # endif
81 #endif
82
83 /* Define to `__inline__' or `__inline' if that's what the C compiler
84    calls it, or to nothing if 'inline' is not supported under any name.  */
85 #if !defined(__cplusplus) && defined(_MSC_VER)
86 #define inline __inline
87 #endif