comparison ext/openal-soft/config.h.in @ 0:4a0efb7baf70

* Datasets becomes the new trunk and retires after that :-)
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 29 Jun 2008 18:44:17 +0000
parents
children 7fa2ac496050
comparison
equal deleted inserted replaced
-1:000000000000 0:4a0efb7baf70
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 /* Define if we have the ALSA backend */
5 #undef HAVE_ALSA_ASOUNDLIB_H
6 #ifdef HAVE_ALSA_ASOUNDLIB_H
7 #define HAVE_ALSA /// redefine for dont change sources...
8 #endif
9
10 /* Define if we have the OSS backend */
11 #undef HAVE_OSS /// using only alsa
12
13
14 /* Define if we have the DSound backend */
15 #undef HAVE_DSOUND /// only for windows, dont use
16
17 /* Define if we have the Windows Multimedia backend */
18 #undef HAVE_WINMM /// only for windows, dont use
19
20 /// need in checking separately
21 /* Define if we have the sqrtf function */
22 #undef HAVE_LIBM
23 #ifdef HAVE_LIBM
24 #define HAVE_ACOSF
25 #define HAVE_SQRTF
26 #endif
27
28 /* Define if we have the strtof function */
29 #undef HAVE_STRTOF
30
31 /* Define if we have stdint.h */
32 #undef HAVE_STDINT_H
33
34 /* Define if we have dlfcn.h */
35 #undef HAVE_DLFCN_H
36
37 /* Define if we have the __int64 type */
38 #undef HAVE_INT64_T
39 #ifdef HAVE_INT64_T
40 #define HAVE___INT64
41 #endif
42
43 /* Define to the size of a long int type */
44 #undef SIZEOF_LONG
45
46 /* Define to the size of a long long int type */
47 #undef SIZEOF_LONG_LONG
48
49 /* Define to the size of an unsigned int type */
50 #undef SIZEOF_UINT
51
52 /* Define to the size of a void pointer type */
53 #undef SIZEOF_VOID_P
54
55 #define SIZEOF_VOIDP SIZEOF_VOID_P /// autoconf create VOID_P, but cmake needed VOIDP, we refefined this for dont change source
56
57 /* Define if we have GCC's destructor attribute */
58 #undef HAVE_GCC_DESTRUCTOR
59
60 #endif