From: Ivan Maidanski Date: Mon, 30 Jul 2018 20:34:19 +0000 (+0300) Subject: Fix wrong expression for ENDIF in CMakeLists.txt X-Git-Tag: v8.0.0~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01e552df9fedc7b075092910bfe32531efc75a83;p=gc Fix wrong expression for ENDIF in CMakeLists.txt (fix of commit 1aabce0f9) * CMakeLists.txt [enable_checksums]: Remove enable_threads for ENDIF. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b559529..044c4518 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -213,7 +213,7 @@ OPTION(enable_checksums "Report erroneously cleared dirty bits" NO) IF(enable_checksums) IF(enable_munmap OR enable_threads) MESSAGE("CHECKSUMS not compatible with USE_MUNMAP or threads") - ENDIF(enable_threads) + ENDIF() ADD_DEFINITIONS("-DCHECKSUMS") SET(SRC ${SRC} checksums.c) ENDIF(enable_checksums)