diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-09-01 20:14:00 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-09-01 20:14:00 -0700 |
commit | f189762245b5f3387a71a806772518bca2526004 (patch) | |
tree | 60d89373be2626f52890f1c1dad727ed08b12b93 /config/libc/glibc.in | |
parent | db8ff6c0114b60faddc6bb97e4b0beaea0b40b14 (diff) | |
download | crosstool-ng-f189762245b5f3387a71a806772518bca2526004.tar.gz crosstool-ng-f189762245b5f3387a71a806772518bca2526004.tar.bz2 crosstool-ng-f189762245b5f3387a71a806772518bca2526004.zip |
glibc: Fix applying addons to glibc => 2.17
glibc-2.17 and above no longer have external addons or ports.
So if we are => 2.17, don't even think about trying to mess with ports
or addons.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'config/libc/glibc.in')
-rw-r--r-- | config/libc/glibc.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index 5fe9c112..dee6748d 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -58,14 +58,17 @@ config LIBC_GLIBC_V_2_20 config LIBC_GLIBC_V_2_19 bool prompt "2.19" + select LIBC_GLIBC_2_17_or_later config LIBC_GLIBC_V_2_18 bool prompt "2.18" + select LIBC_GLIBC_2_17_or_later config LIBC_GLIBC_V_2_17 bool prompt "2.17" + select LIBC_GLIBC_2_17_or_later config LIBC_GLIBC_V_2_16_0 bool @@ -141,9 +144,15 @@ endchoice config LIBC_GLIBC_2_21_or_later bool depends on CC_GCC_4_6_or_later + select LIBC_GLIBC_2_20_or_later config LIBC_GLIBC_2_20_or_later bool + select LIBC_GLIBC_2_17_or_later + +# DeMark no more ports +config LIBC_GLIBC_2_17_or_later + bool config LIBC_CUSTOM bool |