projects
/
platform
/
upstream
/
libgc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7fc7a4
)
Fix wrong expression for ENDIF in CMakeLists.txt
author
Ivan Maidanski
<ivmai@mail.ru>
Mon, 30 Jul 2018 20:34:19 +0000
(23:34 +0300)
committer
Ivan Maidanski
<ivmai@mail.ru>
Mon, 30 Jul 2018 20:34:19 +0000
(23:34 +0300)
(fix of commit
1aabce0f9
)
* CMakeLists.txt [enable_checksums]: Remove enable_threads for ENDIF.
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index
5b55952
..
044c451
100644
(file)
--- 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)