config/libc_uClibc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Mar 12 18:59:31 2007 +0000 (2007-03-12)
changeset 19 d80e6dedcc13
parent 1 eeea35fbf182
child 22 3b50052c0586
permissions -rw-r--r--
Auto-detect Darwin (MacOS-X) and disable libintl for during build for this platform.
A bit of help tweaking.
     1 # uClibc options
     2 
     3 choice
     4     bool
     5     prompt "uClibc version"
     6 
     7 config LIBC_V_snapshot
     8     bool
     9     prompt "latest snapshot"
    10 
    11 config LIBC_V_specific_date
    12     bool
    13     prompt "<specific date>"
    14 
    15 config LIBC_V_0_9_26
    16     bool
    17     prompt "0.9.26"
    18 
    19 config LIBC_V_0_9_27
    20     bool
    21     prompt "0.9.27"
    22 
    23 config LIBC_V_0_9_28
    24     bool
    25     prompt "0.9.28"
    26 
    27 config LIBC_V_0_9_28_1
    28     bool
    29     prompt "0.9.28.1"
    30 
    31 config LIBC_V_0_9_28_2
    32     bool
    33     prompt "0.9.28.2"
    34 
    35 config LIBC_V_0_9_28_3
    36     bool
    37     prompt "0.9.28.3"
    38 
    39 # CT_INSERT_VERSION_ABOVE
    40 # Don't remove above line!
    41 endchoice
    42 
    43 config LIBC_VERSION
    44     string
    45     prompt "Enter date (YYYYMMDD)" if LIBC_V_specific_date
    46     default "snapshot" if LIBC_V_snapshot
    47     default "0.9.26" if LIBC_V_0_9_26
    48     default "0.9.27" if LIBC_V_0_9_27
    49     default "0.9.28" if LIBC_V_0_9_28
    50     default "0.9.28.1" if LIBC_V_0_9_28_1
    51     default "0.9.28.2" if LIBC_V_0_9_28_2
    52     default "0.9.28.3" if LIBC_V_0_9_28_3
    53 # CT_INSERT_VERSION_STRING_ABOVE
    54 # Don't remove qbove line!
    55 
    56 choice
    57     bool
    58     prompt "Debug level"
    59     default LIBC_UCLIBC_DEBUG_LEVEL_0
    60 
    61 config LIBC_UCLIBC_DEBUG_LEVEL_0
    62     bool
    63     prompt "none"
    64 
    65 config LIBC_UCLIBC_DEBUG_LEVEL_1
    66     bool
    67     prompt "minimal"
    68 
    69 config LIBC_UCLIBC_DEBUG_LEVEL_2
    70     bool
    71     prompt "all"
    72 
    73 endchoice
    74 
    75 config LIBC_UCLIBC_DEBUG_LEVEL
    76     int
    77     default 0 if LIBC_UCLIBC_DEBUG_LEVEL_0
    78     default 1 if LIBC_UCLIBC_DEBUG_LEVEL_1
    79     default 2 if LIBC_UCLIBC_DEBUG_LEVEL_2
    80 
    81 config LIBC_UCLIBC_CONFIG_FILE
    82     string
    83     prompt "Configuration file"
    84     default ""
    85     help
    86       Path to the configuration file.
    87       
    88       You _must_ provide one (for now).
    89 
    90 config LIBC_UCLIBC_LOCALES
    91     bool
    92     prompt "Add support for locales"
    93     default n
    94     help
    95       Say y if you want uClibc to support localisation.
    96 
    97       Note that seems to be broken on recent uClibc releases.