config/libc/glibc.in
changeset 1114 c3516fc7460d
parent 922 3f0456891349
child 1260 777153645ab8
     1.1 --- a/config/libc/glibc.in	Mon Oct 13 11:23:51 2008 +0000
     1.2 +++ b/config/libc/glibc.in	Sun Jan 04 12:46:13 2009 +0000
     1.3 @@ -36,6 +36,16 @@
     1.4      bool
     1.5      prompt "2.7"
     1.6  
     1.7 +config LIBC_V_2_8
     1.8 +    bool
     1.9 +    prompt "2_8"
    1.10 +    select LIBC_GLIBC_2_8_or_later
    1.11 +
    1.12 +config LIBC_V_2_9
    1.13 +    bool
    1.14 +    prompt "2_9"
    1.15 +    select LIBC_GLIBC_2_8_or_later
    1.16 +
    1.17  # CT_INSERT_VERSION_ABOVE
    1.18  # Don't remove above line!
    1.19  
    1.20 @@ -62,6 +72,45 @@
    1.21      default "2.6" if LIBC_V_2_6
    1.22      default "2.6.1" if LIBC_V_2_6_1
    1.23      default "2.7" if LIBC_V_2_7
    1.24 +    default "2_8" if LIBC_V_2_8
    1.25 +    default "2_9" if LIBC_V_2_9
    1.26  # CT_INSERT_VERSION_STRING_ABOVE
    1.27  # Don't remove above line!
    1.28  
    1.29 +config LIBC_GLIBC_2_8_or_later
    1.30 +    bool
    1.31 +    default n
    1.32 +
    1.33 +if LIBC_GLIBC_2_8_or_later
    1.34 +
    1.35 +config LIBC_GLIBC_latest_snapshot
    1.36 +    bool
    1.37 +    prompt "Use latest nightly snapshot"
    1.38 +    default n
    1.39 +    help
    1.40 +      Say 'y' to use the latest nightly snapshot.
    1.41 +      Not recommended, as the toolchain will not be reproducible.
    1.42 +
    1.43 +if ! LIBC_GLIBC_latest_snapshot
    1.44 +
    1.45 +comment "Using CVS checkout"
    1.46 +
    1.47 +config LIBC_GLIBC_CVS_date
    1.48 +    string
    1.49 +    prompt "checkout as of date"
    1.50 +    default ""
    1.51 +    help
    1.52 +      The date, in ISO-8601 format, at which to check out the repository.
    1.53 +
    1.54 +#config LIBC_GLIBC_CVS_CHECKOUT
    1.55 +#    bool
    1.56 +#    prompt "checkout instead of export"
    1.57 +#    default n
    1.58 +#    help
    1.59 +#      Use checkout rather than export, so that you can later update
    1.60 +#      the sources.
    1.61 +#      Not recommended, as the toolchain could be non-reproducible.
    1.62 +
    1.63 +endif # ! LIBC_GLIBC_latest_snapshot
    1.64 +
    1.65 +endif # LIBC_GLIBC_2_8_or_later