config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Apr 11 21:26:03 2007 +0000 (2007-04-11)
changeset 37 21bcbfde8094
child 95 57694569322b
permissions -rw-r--r--
Add an option for those having the kernel headers pre-installed from a customised local tree.
In that case, neither download, nor extract, nor patch.
     1 # C library options
     2 
     3 menu "C-library"
     4 
     5 choice
     6     bool
     7     prompt "C-library to use:"
     8     default LIBC_GLIBC
     9 
    10 config LIBC_GLIBC
    11     bool
    12     prompt "glibc"
    13 
    14 config LIBC_UCLIBC
    15     bool
    16     prompt "uClibc"
    17 
    18 endchoice
    19 
    20 config LIBC_VERSION
    21     string
    22 
    23 config LIBC
    24     string
    25     default "glibc" if LIBC_GLIBC
    26     default "uClibc" if LIBC_UCLIBC
    27 
    28 if LIBC_GLIBC
    29 source config/libc_glibc.in
    30 endif
    31 
    32 if LIBC_UCLIBC
    33 source config/libc_uClibc.in
    34 endif
    35 
    36 endmenu