config/debug/duma.in
changeset 236 42650dc4e95e
child 238 6de03d0069f1
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/debug/duma.in	Thu Jul 12 08:47:15 2007 +0000
     1.3 @@ -0,0 +1,44 @@
     1.4 +# D.U.M.A. - Detect Unintended Memory Access - Memory checker
     1.5 +
     1.6 +menuconfig DUMA
     1.7 +    bool
     1.8 +    prompt "D.U.M.A."
     1.9 +    default n
    1.10 +    depends on EXPERIMENTAL
    1.11 +    help
    1.12 +      D.U.M.A. - Detect Unintended Memory Access
    1.13 +      A memory bound checker, with additional features.
    1.14 +      Formerly known as Electric Fence.
    1.15 +
    1.16 +if DUMA
    1.17 +
    1.18 +config DUMA_A
    1.19 +    bool
    1.20 +    prompt "Build a static library"
    1.21 +    default y
    1.22 +
    1.23 +config DUMA_SO
    1.24 +    bool
    1.25 +    prompt "Build a shared library"
    1.26 +    default y if SHARED_LIBS
    1.27 +    default n if ! SHARED_LIBS
    1.28 +
    1.29 +choice
    1.30 +    bool
    1.31 +    prompt "D.U.M.A. version"
    1.32 +
    1.33 +config DUMA_V_2_5_1
    1.34 +    bool
    1.35 +    prompt "2_5_1"
    1.36 +
    1.37 +# CT_INSERT_VERSION_ABOVE
    1.38 +# Don't remove above line!
    1.39 +endchoice
    1.40 +
    1.41 +config DUMA_VERSION
    1.42 +    string
    1.43 +    default "2_5_1" if DUMA_V_2_5_1
    1.44 +# CT_INSERT_VERSION_STRING_ABOVE
    1.45 +# Don't remove above line!
    1.46 +
    1.47 +endif