python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / glibc / Config.in
blob115388e32c18ee352703147261da547ff60dabf4
1 if BR2_TOOLCHAIN_BUILDROOT_GLIBC
3 config BR2_PACKAGE_GLIBC
4         bool
5         default y
6         select BR2_PACKAGE_LINUX_HEADERS
7         select BR2_TOOLCHAIN_HAS_SSP
9 choice
10         prompt "glibc version"
11         default BR2_GLIBC_VERSION_2_24
13 config BR2_GLIBC_VERSION_2_23
14         bool "2.23"
16 config BR2_GLIBC_VERSION_2_24
17         bool "2.24"
18         # Linux 3.2 or later kernel headers are required on all arches.
19         # See: https://sourceware.org/ml/libc-alpha/2016-08/msg00212.html
20         depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
22 config BR2_GLIBC_VERSION_2_25
23         bool "2.25"
24         depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
26 comment "glibc-2.24+ needs kernel headers >= 3.2"
27         depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
29 endchoice
31 endif
33 config BR2_GLIBC_VERSION_STRING
34         string
35         default "2.23" if BR2_GLIBC_VERSION_2_23
36         default "2.24" if BR2_GLIBC_VERSION_2_24
37         default "2.25" if BR2_GLIBC_VERSION_2_25