┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorLaurent Montel <[email protected]>2006-11-26 10:50:13 +0000
committerLaurent Montel <[email protected]>2006-11-26 10:50:13 +0000
commita15c14e7825bb05104b71882ce8da975a6033b47 (patch)
treec7441122c7f5809e8234a1ffc6d04549f67eb3bf /ConfigureChecks.cmake
parent1d03eac7fc147366951ac2cbd19bc0ca711044ef (diff)
Clean up
svn path=/trunk/playground/utils/dolphin/; revision=607924
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake10
1 files changed, 0 insertions, 10 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 7870a16a2..e4219124d 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -5,13 +5,10 @@ include(CheckFunctionExists)
include(CheckLibraryExists)
include(CheckPrototypeExists)
include(CheckTypeSize)
-include(MacroBoolTo01)
# The FindKDE4.cmake module sets _KDE4_PLATFORM_DEFINITIONS with
# definitions like _GNU_SOURCE that are needed on each platform.
set(CMAKE_REQUIRED_DEFINITIONS ${_KDE4_PLATFORM_DEFINITIONS})
-macro_bool_to_01(KDE4_XMMS HAVE_XMMS)
-
#now check for dlfcn.h using the cmake supplied CHECK_include_FILE() macro
# If definitions like -D_GNU_SOURCE are needed for these checks they
# should be added to _KDE4_PLATFORM_DEFINITIONS when it is originally
@@ -38,10 +35,3 @@ check_include_files(sys/vfs.h HAVE_SYS_VFS_H)
check_function_exists(isinf HAVE_FUNC_ISINF)
-check_type_size("int" SIZEOF_INT)
-check_type_size("char *" SIZEOF_CHAR_P)
-check_type_size("long" SIZEOF_LONG)
-check_type_size("short" SIZEOF_SHORT)
-check_type_size("size_t" SIZEOF_SIZE_T)
-check_type_size("unsigned long" SIZEOF_UNSIGNED_LONG)
-