778b74cae1
This allows speaker positions to be specified by discrete angles around the listener, providing more flexibility and configurability in placement. Additional patches to take advantage of this are forthcoming.
86 lines
1.9 KiB
C
86 lines
1.9 KiB
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
/* Define to the library version */
|
|
#define ALSOFT_VERSION "${LIB_VERSION}"
|
|
|
|
/* 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 Solaris backend */
|
|
#cmakedefine HAVE_SOLARIS
|
|
|
|
/* 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 the SDL backend */
|
|
#cmakedefine HAVE_SDL
|
|
|
|
/* 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 acosf function */
|
|
#cmakedefine HAVE_ACOSF
|
|
|
|
/* Define if we have the atanf function */
|
|
#cmakedefine HAVE_ATANF
|
|
|
|
/* Define if we have the fabsf function */
|
|
#cmakedefine HAVE_FABSF
|
|
|
|
/* Define if we have the strtof function */
|
|
#cmakedefine HAVE_STRTOF
|
|
|
|
/* Define if we have stdint.h */
|
|
#cmakedefine HAVE_STDINT_H
|
|
|
|
/* Define if we have SDL/SDL.h */
|
|
#cmakedefine HAVE_SDL_SDL_H
|
|
|
|
/* Define if we have SDL.h */
|
|
#cmakedefine HAVE_SDL_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}
|
|
|
|
/* Define if we have GCC's destructor attribute */
|
|
#cmakedefine HAVE_GCC_DESTRUCTOR
|
|
|
|
/* Define if we have pthread_np.h */
|
|
#cmakedefine HAVE_PTHREAD_NP_H
|
|
|
|
/* Define if we have float.h */
|
|
#cmakedefine HAVE_FLOAT_H
|
|
|
|
/* Define if we have fenv.h */
|
|
#cmakedefine HAVE_FENV_H
|
|
|
|
/* Define if we have fesetround() */
|
|
#cmakedefine HAVE_FESETROUND
|
|
|
|
/* Define if we have _controlfp() */
|
|
#cmakedefine HAVE__CONTROLFP
|
|
|
|
#endif
|