2007-07-12 08:47:15 +00:00
|
|
|
# D.U.M.A. - Detect Unintended Memory Access - Memory checker
|
2010-03-05 17:19:25 +00:00
|
|
|
# depends on ! BACKEND
|
2007-07-12 08:47:15 +00:00
|
|
|
|
2008-10-10 14:30:44 +00:00
|
|
|
config DEBUG_duma
|
2007-07-12 08:47:15 +00:00
|
|
|
help
|
|
|
|
D.U.M.A. - Detect Unintended Memory Access
|
|
|
|
A memory bound checker, with additional features.
|
|
|
|
Formerly known as Electric Fence.
|
|
|
|
|
|
|
|
config DUMA_A
|
|
|
|
bool
|
|
|
|
prompt "Build a static library"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DUMA_SO
|
|
|
|
bool
|
|
|
|
prompt "Build a shared library"
|
|
|
|
default y if SHARED_LIBS
|
|
|
|
default n if ! SHARED_LIBS
|
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "D.U.M.A. version"
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_BELOW
|
2007-07-12 08:47:15 +00:00
|
|
|
|
2009-09-13 15:51:33 +00:00
|
|
|
config DUMA_V_2_5_15
|
2007-07-12 08:47:15 +00:00
|
|
|
bool
|
2009-09-13 15:51:33 +00:00
|
|
|
prompt "2_5_15"
|
2007-07-12 08:47:15 +00:00
|
|
|
|
2009-09-13 15:51:33 +00:00
|
|
|
config DUMA_V_2_5_14
|
2007-07-21 10:15:13 +00:00
|
|
|
bool
|
2009-10-28 18:15:50 +00:00
|
|
|
prompt "2_5_14 (OBSOLETE)"
|
|
|
|
depends on OBSOLETE
|
2007-07-21 10:15:13 +00:00
|
|
|
|
2008-02-15 22:22:31 +00:00
|
|
|
config DUMA_V_2_5_12
|
|
|
|
bool
|
2009-10-28 18:15:50 +00:00
|
|
|
prompt "2_5_12 (OBSOLETE)"
|
|
|
|
depends on OBSOLETE
|
2008-02-15 22:22:31 +00:00
|
|
|
|
2009-09-13 15:51:33 +00:00
|
|
|
config DUMA_V_2_5_8
|
2008-06-17 22:28:17 +00:00
|
|
|
bool
|
2009-10-28 18:15:50 +00:00
|
|
|
prompt "2_5_8 (OBSOLETE)"
|
|
|
|
depends on OBSOLETE
|
2008-06-17 22:28:17 +00:00
|
|
|
|
2009-09-13 15:51:33 +00:00
|
|
|
config DUMA_V_2_5_1
|
2009-08-02 21:33:36 +00:00
|
|
|
bool
|
2009-10-28 18:15:50 +00:00
|
|
|
prompt "2_5_1 (OBSOLETE)"
|
|
|
|
depends on OBSOLETE
|
2009-08-02 21:33:36 +00:00
|
|
|
|
2007-07-12 08:47:15 +00:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config DUMA_VERSION
|
|
|
|
string
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
2009-08-28 09:33:56 +00:00
|
|
|
default "2_5_15" if DUMA_V_2_5_15
|
2009-09-13 15:51:33 +00:00
|
|
|
default "2_5_14" if DUMA_V_2_5_14
|
|
|
|
default "2_5_12" if DUMA_V_2_5_12
|
|
|
|
default "2_5_8" if DUMA_V_2_5_8
|
|
|
|
default "2_5_1" if DUMA_V_2_5_1
|