config/debug/dmalloc.in
author Matthieu Crapet <mcrapet@gmail.com>
Wed Jun 06 12:03:12 2012 +0200 (2012-06-06)
changeset 2991 252ade1e9e17
parent 1844 4d6a56579d9d
permissions -rw-r--r--
libc/eglibc: fix missing LIBC_TRY_CC_OPTION definition (eglibc 2.15)

Upstream SVN is currently broken:
http://www.eglibc.org/svn/branches/eglibc-2_15/libc/

LIBC_TRY_CC_OPTION macro is not defined in aclocal.m4.
This patch fix the configure script.

Once upstream branch will be fixed this patch could be reverted.

Related patch (committed to eglibc trunk):
Use autoconf macro for testing compiler options with empty input
http://sourceware.org/ml/libc-alpha/2012-03/msg00816.html

Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>

diff -r 1f6c8e4b2b92 -r d10afc5bcc25
patches/eglibc/2_15/110-aclocal-LIBC_TRY_CC_OPTION.patch
yann@103
     1
# dmalloc debug facility
yann@103
     2
yann@2444
     3
## depends on ! BACKEND
yann@2444
     4
##
yann@2444
     5
## help dmalloc helps tracking memory allocation mis-usage
yann@2444
     6
## help such as double-free, use-after-free...
yann@103
     7
yann@103
     8
choice
yann@103
     9
    bool
yann@103
    10
    prompt "dmalloc version"
yann@1535
    11
# Don't remove next line
yann@1535
    12
# CT_INSERT_VERSION_BELOW
yann@103
    13
yann@1534
    14
config DMALLOC_V_5_5_2
yann@1534
    15
    bool
yann@1534
    16
    prompt "5.5.2"
yann@1534
    17
yann@103
    18
endchoice
yann@103
    19
yann@103
    20
config DMALLOC_VERSION
yann@103
    21
    string
yann@1535
    22
# Don't remove next line
yann@1535
    23
# CT_INSERT_VERSION_STRING_BELOW
yann@1534
    24
    default "5.5.2" if DMALLOC_V_5_5_2