diff options
author | Slávek Banko <[email protected]> | 2015-02-18 02:51:04 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-02-18 03:20:17 +0100 |
commit | 054ced71d3c42eb30c7169e415e24f1d0504c458 (patch) | |
tree | d9135cb43e3b95e394446ac7150722e0f0655eb9 /config.h.cmake | |
parent | 4ef4f179eb39a8f49fac661763238da978255525 (diff) | |
download | akode-054ced71d3c42eb30c7169e415e24f1d0504c458.tar.gz akode-054ced71d3c42eb30c7169e415e24f1d0504c458.zip |
Conversion to CMake
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 0000000..ea60b7d --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,62 @@ + +/* defined if you have libltdl library and header */ +#cmakedefine HAVE_LIBLTDL + +/* Define if your platform has posix_madvise */ +#cmakedefine HAVE_POSIX_MADVISE + +/* Define if your platform has posix_fadvise */ +#cmakedefine HAVE_POSIX_FADVISE + +/* Define if your platform has fadvise */ +#cmakedefine HAVE_FADVISE + +/* Define if your platform has madvise */ +#cmakedefine HAVE_MADVISE + +/* Define if madvise has no usefull prototype */ +#cmakedefine NEED_MADVISE_PROTOTYPE + +/* Define if your platform has getopt_long from glibc */ +#cmakedefine HAVE_GNU_GETOPT + +/* Define to 1 if you have the <stdint.h> header file. */ +#cmakedefine HAVE_STDINT_H + +/* Define to 1 if you have the <inttypes.h> header file. */ +#cmakedefine HAVE_INTTYPES_H + +/* Define to 1 if you have the <sys/types.h> header file. */ +#cmakedefine HAVE_SYS_TYPES_H + +/* Define to 1 if you have the <soundcard.h> header file. */ +#cmakedefine HAVE_SOUNDCARD_H + +/* Define to 1 if you have the <sys/soundcard.h> header file. */ +#cmakedefine HAVE_SYS_SOUNDCARD_H + +/* Define if you have libavcodec and libavformat from FFMPEG (required for WMA + and RealAudio decoding) */ +#cmakedefine HAVE_FFMPEG + +/* Define if you have libFLAC 1.1.3 or newer */ +#cmakedefine HAVE_LIBFLAC113 + +/* Define if you have libFLAC 1.1.1 or 1.1.2 */ +#cmakedefine HAVE_LIBFLAC + +/* Define if you have libOggFLAC (required for loading OggFLAC files) */ +#cmakedefine HAVE_LIBOGGFLAC + +/* Define if you have speex installed */ +#cmakedefine HAVE_SPEEX + +/* Define if you have libspeex 1.1.x installed */ +#cmakedefine HAVE_SPEEX11 + +/* Define if you have one of the broken libspeex 1.1.x < 1.1.5 */ +#cmakedefine BROKEN_SPEEX11 + +/* Define if you have ogg/vorbis installed */ +#cmakedefine HAVE_OGG_VORBIS + |