diff options
author | Alexey Neyman <stilor@att.net> | 2016-12-02 14:56:25 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2016-12-02 15:02:58 -0800 |
commit | 289188e6f2b55382fa508fed39385c49c5bb9c7c (patch) | |
tree | 1fba1e4a9fc60a49986971608ca1282e3246fd6f /config/libc/uClibc.in | |
parent | 51a3606b17b62eb5a9ae5616467f8814792969b7 (diff) | |
download | crosstool-ng-289188e6f2b55382fa508fed39385c49c5bb9c7c.tar.gz crosstool-ng-289188e6f2b55382fa508fed39385c49c5bb9c7c.tar.bz2 crosstool-ng-289188e6f2b55382fa508fed39385c49c5bb9c7c.zip |
uClibc-ng needs to know whether it is 1.0.15+
This is workaround, as more packages require similar tweaks (some
depend on X_Y_Z_or_later config variables either in kconfig, or in
the build scripts.
We should have a CT_CompareVersion, that will apply the default
or per-package method of comparison.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/libc/uClibc.in')
-rw-r--r-- | config/libc/uClibc.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in index 7e443812..a359fe67 100644 --- a/config/libc/uClibc.in +++ b/config/libc/uClibc.in @@ -39,7 +39,11 @@ config LIBC_UCLIBC_CUSTOM_UCLIBC select LIBC_UCLIBC_0_9_33_2_or_later config LIBC_UCLIBC_CUSTOM_UCLIBC_NG - bool "uClibc-ng" + bool "uClibc-ng (1.0.15 or later)" + select LIBC_UCLIBC_NG_1_0_15_or_later + +config LIBC_UCLIBC_CUSTOM_UCLIBC_NG_OLD + bool "uClibc-ng (older than 1.0.15)" select LIBC_UCLIBC_NG_1_0_0_or_later endchoice |