Config.in 977 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_WINE_ARCH_SUPPORTS
  2. bool
  3. default y
  4. # Wine only builds on certain architectures
  5. depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
  6. BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \
  7. BR2_HOSTARCH = "aarch64"
  8. # Wine has much CPU specific code and mostly makes sense on x86
  9. depends on BR2_i386
  10. config BR2_PACKAGE_WINE
  11. bool "wine"
  12. depends on BR2_PACKAGE_WINE_ARCH_SUPPORTS
  13. # Wine unconditionally builds shared libraries
  14. depends on !BR2_STATIC_LIBS
  15. help
  16. Wine is a compatibility layer capable of running Windows
  17. applications on Linux. Instead of simulating internal
  18. Windows logic like a virtual machine or emulator, Wine
  19. translates Windows API calls into POSIX calls on-the-fly,
  20. eliminating the performance and memory penalties of other
  21. methods.
  22. http://www.winehq.org
  23. comment "wine needs a toolchain w/ dynamic library"
  24. depends on BR2_PACKAGE_WINE_ARCH_SUPPORTS
  25. depends on BR2_STATIC_LIBS