kde-extraapps/kmix/ConfigureChecks.cmake
Ivailo Monev e610051108 generic: misc cleanups
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2017-06-24 07:13:30 +00:00

12 lines
424 B
CMake

include(CheckIncludeFiles)
include(CheckTypeSize)
include(CheckStructMember)
include(MacroBoolTo01)
macro_bool_to_01(OGGVORBIS_FOUND HAVE_VORBIS)
check_include_files(machine/endian.h HAVE_MACHINE_ENDIAN_H)
# Linux has <endian.h>, FreeBSD has <sys/endian.h> and Solaris has neither.
check_include_files(endian.h HAVE_ENDIAN_H)
check_include_files(sys/endian.h HAVE_SYS_ENDIAN_H)
check_include_files(unistd.h HAVE_UNISTD_H)