summaryrefslogtreecommitdiff
path: root/library/CMakeLists.txt
diff options
context:
space:
mode:
authorPetr Mrázek2012-04-01 00:30:42 +0200
committerPetr Mrázek2012-04-01 00:30:42 +0200
commit209b26128464537be2474b78da7b3409fa4f4d92 (patch)
tree09a8bc0652bd85e426a0050149ec6b3a5098c8dc /library/CMakeLists.txt
parent4bac6edd79e82d8c1e5f9c1eca6cd8d34f712290 (diff)
downloaddfhack-209b26128464537be2474b78da7b3409fa4f4d92.tar.gz
dfhack-209b26128464537be2474b78da7b3409fa4f4d92.tar.bz2
dfhack-209b26128464537be2474b78da7b3409fa4f4d92.tar.xz
Get rid of MALLOC_FILL build option
Diffstat (limited to 'library/CMakeLists.txt')
-rw-r--r--library/CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt
index f8b05a04..d0410850 100644
--- a/library/CMakeLists.txt
+++ b/library/CMakeLists.txt
@@ -6,7 +6,6 @@ OPTION(BUILD_DEVEL "Install/package files required for development (For SDK)." O
OPTION(BUILD_DOXYGEN "Create/install/package doxygen documentation for DFHack (For SDK)." OFF)
IF(UNIX)
OPTION(CONSOLE_NO_CATCH "Make the console not catch 'CTRL+C' events for easier debugging." OFF)
- OPTION(MALLOC_FILL "Make malloc calls fill the allocated memory with 0xCC values." OFF)
ENDIF()
include_directories (include)
@@ -216,9 +215,6 @@ IF(UNIX)
IF(CONSOLE_NO_CATCH)
ADD_DEFINITIONS(-DCONSOLE_NO_CATCH)
ENDIF()
- IF(MALLOC_FILL)
- ADD_DEFINITIONS(-DMALLOC_FILL)
- ENDIF()
ENDIF()
IF(UNIX)