diff options
author | Chris Robinson <[email protected]> | 2007-11-13 18:02:18 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-11-13 18:02:18 -0800 |
commit | ae5f4e9a742b07e004b330c04a72fac4457c9b58 (patch) | |
tree | d1d5c9fadd918d9346fb871033f60e8c91600a63 /config.h.in |
Initial import
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in new file mode 100644 index 00000000..d8c26def --- /dev/null +++ b/config.h.in @@ -0,0 +1,43 @@ +#ifndef CONFIG_H +#define CONFIG_H + +/* Define if we have the ALSA backend */ +#cmakedefine HAVE_ALSA + +/* Define if we have the OSS backend */ +#cmakedefine HAVE_OSS + +/* Define if we have the DSound backend */ +#cmakedefine HAVE_DSOUND + +/* Define if we have the Windows Multimedia backend */ +#cmakedefine HAVE_WINMM + +/* Define if we have dlfcn.h */ +#cmakedefine HAVE_DLFCN_H + +/* Define if we have the sqrtf function */ +#cmakedefine HAVE_SQRTF + +/* Define if we have the strtof function */ +#cmakedefine HAVE_STRTOF + +/* Define if we have stdint.h */ +#cmakedefine HAVE_STDINT_H + +/* Define if we have the __int64 type */ +#cmakedefine HAVE___INT64 + +/* Define to the size of a long int type */ +#cmakedefine SIZEOF_LONG ${SIZEOF_LONG} + +/* Define to the size of a long long int type */ +#cmakedefine SIZEOF_LONG_LONG ${SIZEOF_LONG_LONG} + +/* Define to the size of an unsigned int type */ +#cmakedefine SIZEOF_UINT ${SIZEOF_UINT} + +/* Define to the size of a void pointer type */ +#cmakedefine SIZEOF_VOIDP ${SIZEOF_VOIDP} + +#endif |