config/kernel/linux.in.2
author Matthieu Crapet <mcrapet@gmail.com>
Wed Jun 06 12:03:12 2012 +0200 (2012-06-06)
changeset 2991 252ade1e9e17
parent 2446 d902cd77419f
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@448
     1
# Linux kernel options
yann@448
     2
yann@2603
     3
if ! KERNEL_LINUX_USE_CUSTOM_HEADERS
yann@1345
     4
yann@1345
     5
choice
yann@1345
     6
    bool
yann@1345
     7
    prompt "Kernel verbosity:"
yann@1345
     8
    default KERNEL_LINUX_VERBOSITY_0
yann@1345
     9
yann@1345
    10
config KERNEL_LINUX_VERBOSITY_0
yann@1345
    11
    bool
yann@1345
    12
    prompt "Simplified"
yann@1345
    13
    help
yann@1345
    14
      Print simplified command lines.
yann@1345
    15
yann@1345
    16
config KERNEL_LINUX_VERBOSITY_1
yann@1345
    17
    bool
yann@1345
    18
    prompt "Full commands"
yann@1345
    19
    help
yann@1345
    20
      Print full command lines.
yann@1345
    21
yann@1345
    22
config KERNEL_LINUX_VERBOSITY_2
yann@1345
    23
    bool
yann@1345
    24
    prompt "Exec reasons"
yann@1345
    25
    help
yann@1345
    26
      Print the reasons why a make target is rebuild.
yann@1345
    27
yann@1345
    28
endchoice
yann@1345
    29
yann@1345
    30
config KERNEL_LINUX_VERBOSE_LEVEL
yann@1345
    31
    int
yann@1345
    32
    default 0 if KERNEL_LINUX_VERBOSITY_0
yann@1345
    33
    default 1 if KERNEL_LINUX_VERBOSITY_1
yann@1345
    34
    default 2 if KERNEL_LINUX_VERBOSITY_2
yann@1345
    35
yann@1989
    36
config KERNEL_LINUX_INSTALL_CHECK
yann@1989
    37
    bool
yann@1989
    38
    prompt "Check installed headers"
yann@1989
    39
    default y
yann@1989
    40
    help
yann@1989
    41
      If you are in doubt that installed headers are buggy, say 'Y'
yann@1989
    42
      here to have an extra check passed onto the headers.
yann@1989
    43
yann@2603
    44
endif # ! KERNEL_LINUX_USE_CUSTOM_HEADERS