diff options
author | Stefan Hallas Mulvad <stefan.hallas.mulvad@axon-networks.com> | 2025-03-27 10:45:13 -0700 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2025-05-16 13:01:35 +1200 |
commit | 7869fdb4e83fdd9754e09940afb4f040ece652d1 (patch) | |
tree | 33d9947a812395fa5dee22d685e200a8f6961267 /config | |
parent | 297719c0611c19e3ca8ff7dcd6b38229a632bce7 (diff) | |
download | crosstool-ng-7869fdb4e83fdd9754e09940afb4f040ece652d1.tar.gz crosstool-ng-7869fdb4e83fdd9754e09940afb4f040ece652d1.tar.bz2 crosstool-ng-7869fdb4e83fdd9754e09940afb4f040ece652d1.zip |
Fixes false indication of HAS_OBSOLETE_LIBCRYPT option
As of glibc-2.39, the HAS_OBSOLETE_LIBCRYPT option has been
removed. This patch updates menuconfig to reflect this.
Fixes #2238
Signed-off-by: Stefan Hallas Mulvad <stefan.hallas.mulvad@axon-networks.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/libc/glibc.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index 8f1e0672..28e4004c 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -155,11 +155,11 @@ config GLIBC_HAS_OBSOLETE_RPC def_bool y depends on GLIBC_2_14_or_later && !GLIBC_2_32_or_later -# As of 2.38 libcrypt is no longer built by default. It will likely be removed in a future -# version. +# As of 2.38 libcrypt is no longer built by default. It was completely removed +# as of 2.39 config GLIBC_HAS_OBSOLETE_LIBCRYPT def_bool y - depends on GLIBC_2_38_or_later + depends on GLIBC_2_38_or_later && !GLIBC_2_39_or_later config GLIBC_EXTRA_CONFIG_ARRAY string |