config/debug/duma.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Apr 18 22:16:28 2008 +0000 (2008-04-18)
changeset 451 8a72f9bcf675
parent 369 9258a7c3b84f
child 572 944e145f3890
permissions -rw-r--r--
Using SOCKS 4/5 proxy is no easy task:
- a machine may well be able to reach the proxy, even if it is not on the same sub-net(s) as the machine itself (absolutely legitimate)
- tsocks.conf needs a list of so-called 'local' networks that can be reached without the need for a SOCKS connection
- SOCKS proxies are expected to be in 'local' networks
- there is absolutely NO way to tell what networks are local, besides the sub-net(s) the machine is in

Therefore, appropriate configuration of SOCKS 4/5 configuration is really complex, and attempts to correctly overcome this issue are doomed.

/trunk/scripts/crosstool.sh | 52 46 6 0 ++++++++++++++++++++++++++++++++++----
/trunk/config/global/download_extract.in | 39 31 8 0 +++++++++++++++++++++++------
2 files changed, 77 insertions(+), 14 deletions(-)
yann@236
     1
# D.U.M.A. - Detect Unintended Memory Access - Memory checker
yann@236
     2
yann@236
     3
menuconfig DUMA
yann@236
     4
    bool
yann@236
     5
    prompt "D.U.M.A."
yann@236
     6
    default n
yann@236
     7
    help
yann@236
     8
      D.U.M.A. - Detect Unintended Memory Access
yann@236
     9
      A memory bound checker, with additional features.
yann@236
    10
      Formerly known as Electric Fence.
yann@236
    11
yann@236
    12
if DUMA
yann@236
    13
yann@236
    14
config DUMA_A
yann@236
    15
    bool
yann@236
    16
    prompt "Build a static library"
yann@236
    17
    default y
yann@236
    18
yann@236
    19
config DUMA_SO
yann@236
    20
    bool
yann@236
    21
    prompt "Build a shared library"
yann@236
    22
    default y if SHARED_LIBS
yann@236
    23
    default n if ! SHARED_LIBS
yann@236
    24
yann@236
    25
choice
yann@236
    26
    bool
yann@236
    27
    prompt "D.U.M.A. version"
yann@236
    28
yann@236
    29
config DUMA_V_2_5_1
yann@236
    30
    bool
yann@236
    31
    prompt "2_5_1"
yann@236
    32
yann@369
    33
config DUMA_V_2_5_8
yann@279
    34
    bool
yann@369
    35
    prompt "2_5_8"
yann@279
    36
yann@430
    37
config DUMA_V_2_5_12
yann@430
    38
    bool
yann@430
    39
    prompt "2_5_12"
yann@430
    40
yann@236
    41
# CT_INSERT_VERSION_ABOVE
yann@236
    42
# Don't remove above line!
yann@236
    43
endchoice
yann@236
    44
yann@236
    45
config DUMA_VERSION
yann@236
    46
    string
yann@236
    47
    default "2_5_1" if DUMA_V_2_5_1
yann@369
    48
    default "2_5_8" if DUMA_V_2_5_8
yann@430
    49
    default "2_5_12" if DUMA_V_2_5_12
yann@236
    50
# CT_INSERT_VERSION_STRING_ABOVE
yann@236
    51
# Don't remove above line!
yann@236
    52
yann@236
    53
endif