config/libc.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 446 d205527c5e01
child 710 021546adce69
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@1
     1
# C library options
yann@1
     2
yann@1
     3
menu "C-library"
yann@1
     4
yann@1
     5
choice
yann@1
     6
    bool
yann@1
     7
    prompt "C-library to use:"
yann@1
     8
    default LIBC_GLIBC
yann@1
     9
yann@1
    10
config LIBC_GLIBC
yann@1
    11
    bool
yann@1
    12
    prompt "glibc"
yann@95
    13
    select LIBC_SUPPORT_NPTL
yann@95
    14
    select LIBC_SUPPORT_LINUXTHREADS
yann@1
    15
yann@1
    16
config LIBC_UCLIBC
yann@1
    17
    bool
yann@1
    18
    prompt "uClibc"
yann@95
    19
    select LIBC_SUPPORT_LINUXTHREADS
yann@1
    20
yann@1
    21
endchoice
yann@1
    22
yann@1
    23
config LIBC_VERSION
yann@1
    24
    string
yann@1
    25
yann@1
    26
config LIBC
yann@1
    27
    string
yann@1
    28
    default "glibc" if LIBC_GLIBC
yann@1
    29
    default "uClibc" if LIBC_UCLIBC
yann@1
    30
yann@95
    31
config LIBC_SUPPORT_NPTL
yann@95
    32
    bool
yann@95
    33
    default n
yann@95
    34
yann@95
    35
config LIBC_SUPPORT_LINUXTHREADS
yann@95
    36
    bool
yann@95
    37
    default n
yann@95
    38
yann@1
    39
if LIBC_GLIBC
yann@448
    40
source config/libc/glibc.in
yann@1
    41
endif
yann@1
    42
yann@1
    43
if LIBC_UCLIBC
yann@448
    44
source config/libc/uClibc.in
yann@1
    45
endif
yann@1
    46
yann@1
    47
endmenu