config/debug/dmalloc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
parent 105 5a8d4f6a19c7
child 850 ef8549b58b6f
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
yann@103
     1
# dmalloc debug facility
yann@103
     2
yann@103
     3
menuconfig DMALLOC
yann@103
     4
    bool
yann@103
     5
    prompt "dmalloc"
yann@103
     6
    default n
yann@103
     7
yann@103
     8
if DMALLOC
yann@103
     9
yann@103
    10
choice
yann@103
    11
    bool
yann@103
    12
    prompt "dmalloc version"
yann@103
    13
yann@103
    14
config DMALLOC_V_5_4_3
yann@103
    15
    bool
yann@330
    16
    prompt "5.4.3 (OBSOLETE)"
yann@103
    17
    depends on OBSOLETE
yann@103
    18
yann@103
    19
config DMALLOC_V_5_5_2
yann@103
    20
    bool
yann@103
    21
    prompt "5.5.2"
yann@103
    22
yann@103
    23
# CT_INSERT_VERSION_ABOVE
yann@103
    24
# Don't remove above line!
yann@103
    25
endchoice
yann@103
    26
yann@103
    27
config DMALLOC_VERSION
yann@103
    28
    string
yann@103
    29
    default "5.4.3" if DMALLOC_V_5_4_3
yann@103
    30
    default "5.5.2" if DMALLOC_V_5_5_2
yann@103
    31
# CT_INSERT_VERSION_STRING_ABOVE
yann@103
    32
# Don't remove above line!
yann@103
    33
yann@103
    34
endif