diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-09-07 20:25:19 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2020-09-07 20:25:19 +1200 |
commit | 1ee44ab51618ab4822e8ac2ce5d84c14562a3708 (patch) | |
tree | 3198371bc4a3af54f38517af85d3967fdbae45b6 /config/libc | |
parent | e7da850fa2066c9f1adeba3d8525a7231d0e47bc (diff) | |
download | crosstool-ng-1ee44ab51618ab4822e8ac2ce5d84c14562a3708.tar.gz crosstool-ng-1ee44ab51618ab4822e8ac2ce5d84c14562a3708.tar.bz2 crosstool-ng-1ee44ab51618ab4822e8ac2ce5d84c14562a3708.zip |
glibc: --enable-obsolete-rpc has been removed as of 2.32
Make --enable-obsolete-rpc conditional on !CT_GLIBC_2_32_or_later as
it's been removed from that version on.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/glibc.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index fe18eeeb..a82ff3cc 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -145,9 +145,10 @@ config GLIBC_NO_SPARC_V8 # in 2.16, adding an option to enable that code. Crosstool-NG backports that code # to 2.14/2.15, but there is no harm in throwing this option even if that patch # is not applied. +# The option and the code has finally been removed in 2.32 config GLIBC_HAS_OBSOLETE_RPC def_bool y - depends on GLIBC_2_14_or_later + depends on GLIBC_2_14_or_later && !CT_GLIBC_2_32_or_later config GLIBC_EXTRA_CONFIG_ARRAY string |