aboutsummaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2014-12-09 08:55:46 +0900
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2014-12-09 08:55:46 +0900
commit0731bc7b2e2b532b8dec588313aca73d83ed4955 (patch)
tree5875450729bedcb1b0ec25f8f1f08e3a7ae944e2 /ConfigureChecks.cmake
parent0e6d8617ae38ded8bb9c5d030c4e90a5a5838e5f (diff)
Remove CMake check for sizeof(long).
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake5
1 files changed, 0 insertions, 5 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index cae533e3..99cc1de5 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -20,11 +20,6 @@ if(NOT ${SIZEOF_INT} EQUAL 4)
MESSAGE(FATAL_ERROR "TagLib requires that int is 32-bit wide.")
endif()
-check_type_size("long" SIZEOF_LONG)
-if(${SIZEOF_LONG} EQUAL 8)
- set(LONG_IS_INT64 1)
-endif()
-
check_type_size("long long" SIZEOF_LONGLONG)
if(NOT ${SIZEOF_LONGLONG} EQUAL 8)
MESSAGE(FATAL_ERROR "TagLib requires that long long is 64-bit wide.")