diff options
author | Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com> | 2011-05-31 20:55:30 +0200 |
---|---|---|
committer | Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com> | 2011-05-31 20:55:30 +0200 |
commit | d558bb995d07995c0cb00a5ca1f237a2423bf350 (patch) | |
tree | 3250f594daaab039c596961cbee710c5db964207 /config/libc/eglibc.in | |
parent | 493672e977460426013e6ad5fef4160a98ec79e1 (diff) | |
download | crosstool-ng-d558bb995d07995c0cb00a5ca1f237a2423bf350.tar.gz crosstool-ng-d558bb995d07995c0cb00a5ca1f237a2423bf350.tar.bz2 crosstool-ng-d558bb995d07995c0cb00a5ca1f237a2423bf350.zip |
eglibc: use the PKGVERSION and BUGURL options
This patch makes eglibc benefit from the TOOLCHAIN_PKGVERSION and
TOOLCHAIN_BUGURL options.
Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'config/libc/eglibc.in')
-rw-r--r-- | config/libc/eglibc.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in index e93aba96..8fe2faaa 100644 --- a/config/libc/eglibc.in +++ b/config/libc/eglibc.in @@ -22,22 +22,27 @@ config LIBC_EGLIBC_V_2_13 bool prompt "2_13" depends on EXPERIMENTAL + select LIBC_EGLIBC_2_13_or_later config LIBC_EGLIBC_V_2_12 bool prompt "2_12" + select LIBC_EGLIBC_2_12_or_later config LIBC_EGLIBC_V_2_11 bool prompt "2_11" + select LIBC_EGLIBC_2_11_or_later config LIBC_EGLIBC_V_2_10 bool prompt "2_10" + select LIBC_EGLIBC_2_10_or_later config LIBC_EGLIBC_V_2_9 bool prompt "2_9" + select LIBC_EGLIBC_2_9_or_later config LIBC_EGLIBC_V_2_8 bool @@ -62,6 +67,7 @@ config LIBC_EGLIBC_V_2_5 config LIBC_EGLIBC_V_TRUNK bool prompt "'trunk'" + select LIBC_EGLIBC_2_13_or_later help Selecting this will export the trunk of the eglibc subversion repository. @@ -82,6 +88,29 @@ config LIBC_VERSION default "2_5" if LIBC_EGLIBC_V_2_5 default "trunk" if LIBC_EGLIBC_V_TRUNK +config LIBC_EGLIBC_2_13_or_later + bool + select LIBC_EGLIBC_2_12_or_later + +config LIBC_EGLIBC_2_12_or_later + bool + select LIBC_EGLIBC_2_11_or_later + +config LIBC_EGLIBC_2_11_or_later + bool + select LIBC_EGLIBC_2_10_or_later + +config LIBC_EGLIBC_2_10_or_later + bool + select LIBC_EGLIBC_2_9_or_later + +config LIBC_EGLIBC_2_9_or_later + bool + select LIBC_EGLIBC_HAS_PKGVERSION_BUGURL + +config LIBC_EGLIBC_HAS_PKGVERSION_BUGURL + bool + config EGLIBC_REVISION string prompt "Revision to use" |