Bump buildroot to 2019.02

This commit is contained in:
2019-03-28 22:49:48 +01:00
parent 5598b1b762
commit 920d307141
5121 changed files with 78550 additions and 46132 deletions

View File

@@ -1,12 +1,18 @@
config BR2_PACKAGE_WINE
bool "wine"
depends on BR2_TOOLCHAIN_USES_GLIBC
config BR2_PACKAGE_WINE_ARCH_SUPPORTS
bool
default y
# Wine only builds on certain architectures
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \
BR2_HOSTARCH = "aarch64"
# Wine has much CPU specific code and mostly makes sense on x86
depends on BR2_i386
config BR2_PACKAGE_WINE
bool "wine"
depends on BR2_PACKAGE_WINE_ARCH_SUPPORTS
# Wine unconditionally builds shared libraries
depends on !BR2_STATIC_LIBS
help
Wine is a compatibility layer capable of running Windows
applications on Linux. Instead of simulating internal
@@ -17,7 +23,6 @@ config BR2_PACKAGE_WINE
http://www.winehq.org
comment "wine needs a glibc toolchain"
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
depends on BR2_i386
depends on !BR2_TOOLCHAIN_USES_GLIBC
comment "wine needs a toolchain w/ dynamic library"
depends on BR2_PACKAGE_WINE_ARCH_SUPPORTS
depends on BR2_STATIC_LIBS