config/debug/duma.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 30 21:09:12 2007 +0000 (2007-07-30)
changeset 306 1984d7bcea28
parent 279 64742bba9b86
child 369 9258a7c3b84f
permissions -rw-r--r--
Small typo fix.
     1 # D.U.M.A. - Detect Unintended Memory Access - Memory checker
     2 
     3 menuconfig DUMA
     4     bool
     5     prompt "D.U.M.A."
     6     default n
     7     help
     8       D.U.M.A. - Detect Unintended Memory Access
     9       A memory bound checker, with additional features.
    10       Formerly known as Electric Fence.
    11 
    12 if DUMA
    13 
    14 config DUMA_A
    15     bool
    16     prompt "Build a static library"
    17     default y
    18 
    19 config DUMA_SO
    20     bool
    21     prompt "Build a shared library"
    22     default y if SHARED_LIBS
    23     default n if ! SHARED_LIBS
    24 
    25 choice
    26     bool
    27     prompt "D.U.M.A. version"
    28 
    29 config DUMA_V_2_5_1
    30     bool
    31     prompt "2_5_1"
    32 
    33 config DUMA_V_2_5_2
    34     bool
    35     prompt "2_5_2"
    36     depends on BROKEN
    37 
    38 config DUMA_V_2_5_3
    39     bool
    40     prompt "2_5_3"
    41     depends on BROKEN
    42 
    43 # CT_INSERT_VERSION_ABOVE
    44 # Don't remove above line!
    45 endchoice
    46 
    47 config DUMA_VERSION
    48     string
    49     default "2_5_1" if DUMA_V_2_5_1
    50     default "2_5_2" if DUMA_V_2_5_2
    51     default "2_5_3" if DUMA_V_2_5_3
    52 # CT_INSERT_VERSION_STRING_ABOVE
    53 # Don't remove above line!
    54 
    55 endif