2007-11-13 18:02:18 -08:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2008-10-25 15:48:17 -07:00
|
|
|
/* Define to the library version */
|
|
|
|
#define ALSOFT_VERSION "${LIB_VERSION}"
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
/* Define if we have the ALSA backend */
|
|
|
|
#cmakedefine HAVE_ALSA
|
|
|
|
|
|
|
|
/* Define if we have the OSS backend */
|
|
|
|
#cmakedefine HAVE_OSS
|
|
|
|
|
2008-09-07 14:34:14 -07:00
|
|
|
/* Define if we have the Solaris backend */
|
|
|
|
#cmakedefine HAVE_SOLARIS
|
|
|
|
|
2011-05-15 20:26:25 -07:00
|
|
|
/* Define if we have the MMDevApi backend */
|
|
|
|
#cmakedefine HAVE_MMDEVAPI
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
/* Define if we have the DSound backend */
|
|
|
|
#cmakedefine HAVE_DSOUND
|
|
|
|
|
|
|
|
/* Define if we have the Windows Multimedia backend */
|
|
|
|
#cmakedefine HAVE_WINMM
|
|
|
|
|
2009-03-10 00:55:29 -07:00
|
|
|
/* Define if we have the PortAudio backend */
|
|
|
|
#cmakedefine HAVE_PORTAUDIO
|
|
|
|
|
2009-04-16 05:17:42 -07:00
|
|
|
/* Define if we have the PulseAudio backend */
|
|
|
|
#cmakedefine HAVE_PULSEAUDIO
|
|
|
|
|
2011-03-15 04:58:56 -07:00
|
|
|
/* Define if we have the CoreAudio backend */
|
|
|
|
#cmakedefine HAVE_COREAUDIO
|
|
|
|
|
2010-06-08 02:01:11 -07:00
|
|
|
/* Define if we have the Wave Writer backend */
|
|
|
|
#cmakedefine HAVE_WAVE
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
/* Define if we have dlfcn.h */
|
|
|
|
#cmakedefine HAVE_DLFCN_H
|
|
|
|
|
2010-01-09 06:40:50 -08:00
|
|
|
/* Define if we have the stat function */
|
|
|
|
#cmakedefine HAVE_STAT
|
|
|
|
|
2010-03-07 22:12:33 -08:00
|
|
|
/* Define if we have the powf function */
|
|
|
|
#cmakedefine HAVE_POWF
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
/* Define if we have the sqrtf function */
|
|
|
|
#cmakedefine HAVE_SQRTF
|
|
|
|
|
2008-01-15 21:23:14 -08:00
|
|
|
/* Define if we have the acosf function */
|
|
|
|
#cmakedefine HAVE_ACOSF
|
|
|
|
|
2009-01-24 10:38:04 -08:00
|
|
|
/* Define if we have the atanf function */
|
|
|
|
#cmakedefine HAVE_ATANF
|
|
|
|
|
|
|
|
/* Define if we have the fabsf function */
|
|
|
|
#cmakedefine HAVE_FABSF
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
/* 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}
|
|
|
|
|
2007-11-16 01:27:02 -08:00
|
|
|
/* Define if we have GCC's destructor attribute */
|
|
|
|
#cmakedefine HAVE_GCC_DESTRUCTOR
|
|
|
|
|
2010-01-12 08:48:25 -08:00
|
|
|
/* Define if we have GCC's format attribute */
|
|
|
|
#cmakedefine HAVE_GCC_FORMAT
|
|
|
|
|
2008-05-15 21:35:51 -07:00
|
|
|
/* Define if we have pthread_np.h */
|
|
|
|
#cmakedefine HAVE_PTHREAD_NP_H
|
|
|
|
|
2008-10-14 09:47:32 -07:00
|
|
|
/* Define if we have float.h */
|
|
|
|
#cmakedefine HAVE_FLOAT_H
|
|
|
|
|
2008-08-08 08:12:41 -07:00
|
|
|
/* 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
|
|
|
|
|
2009-11-29 22:44:56 -08:00
|
|
|
/* Define if we have pthread_setschedparam() */
|
|
|
|
#cmakedefine HAVE_PTHREAD_SETSCHEDPARAM
|
|
|
|
|
2011-05-02 17:06:32 -07:00
|
|
|
/* Define if we have the restrict keyword */
|
|
|
|
#cmakedefine HAVE_RESTRICT
|
|
|
|
|
|
|
|
/* Define if we have the __restrict keyword */
|
|
|
|
#cmakedefine HAVE___RESTRICT
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#endif
|