diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2010-10-18 23:32:02 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2010-10-18 23:32:02 -0700 |
commit | 093fb9111f892678df28f9000cbc96e50dd342f9 (patch) | |
tree | ca98d68f000f0f861fcdcb2e6c4b56dcca71abc6 /config/libc/eglibc.in | |
parent | 90918d1095a1338b7c5578e1dd920b13a8d5f639 (diff) | |
download | crosstool-ng-093fb9111f892678df28f9000cbc96e50dd342f9.tar.gz crosstool-ng-093fb9111f892678df28f9000cbc96e50dd342f9.tar.bz2 crosstool-ng-093fb9111f892678df28f9000cbc96e50dd342f9.zip |
libc/eglibc: add 2.11 and 2.12 branches.
Also fix typo s/LIBC_V_2_10/EGLIBC_V_2_10/
Diffstat (limited to 'config/libc/eglibc.in')
-rw-r--r-- | config/libc/eglibc.in | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in index b13571b6..e25ef1a0 100644 --- a/config/libc/eglibc.in +++ b/config/libc/eglibc.in @@ -18,7 +18,17 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW -config LIBC_V_2_10 +config EGLIBC_V_2_12 + bool + prompt "2_12" + depends on EXPERIMENTAL + +config EGLIBC_V_2_11 + bool + prompt "2_11" + depends on EXPERIMENTAL + +config EGLIBC_V_2_10 bool prompt "2_10" @@ -58,7 +68,9 @@ config LIBC_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW - default "2_10" if LIBC_V_2_10 + default "2_12" if EGLIBC_V_2_12 + default "2_11" if EGLIBC_V_2_11 + default "2_10" if EGLIBC_V_2_10 default "2_9" if EGLIBC_V_2_9 default "2_8" if EGLIBC_V_2_8 default "2_7" if EGLIBC_V_2_7 |