buildrootschalter/package/glibc/Config.in
Peter Korsgaard 990a46fdec glibc: move version handling to Config.in
Like we do elsewhere. No functional change, but nicer and easier to keep in
sync.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-06-01 21:51:09 +02:00

42 lines
739 B
Plaintext

if BR2_TOOLCHAIN_BUILDROOT_EGLIBC
choice
prompt "eglibc version"
default BR2_EGLIBC_VERSION_2_18
config BR2_EGLIBC_VERSION_2_18
bool "2.18-svnr23787"
config BR2_EGLIBC_VERSION_2_19
bool "2.19-svnr25243"
# Build breakage
depends on !BR2_powerpc_SPE
endchoice
endif
if BR2_TOOLCHAIN_BUILDROOT_GLIBC
choice
prompt "glibc version"
default BR2_GLIBC_VERSION_2_18
config BR2_GLIBC_VERSION_2_18
bool "2.18"
depends on !BR2_powerpc64le
config BR2_GLIBC_VERSION_2_19
bool "2.19"
endchoice
endif
config BR2_GLIBC_VERSION_STRING
string
default "2.18-svnr23787" if BR2_EGLIBC_VERSION_2_18
default "2.19-svnr25243" if BR2_EGLIBC_VERSION_2_19
default "2.18" if BR2_GLIBC_VERSION_2_18
default "2.19" if BR2_GLIBC_VERSION_2_19