Package Details: wine-wow64 9.8-2

Git Clone URL: https://aur.archlinux.org/wine-wow64.git (read-only, click to copy)
Package Base: wine-wow64
Description: A compatibility layer for running Windows programs
Upstream URL: https://www.winehq.org
Keywords: wine winehq wow64 x64
Licenses: LGPL
Conflicts: wine
Provides: wine
Submitter: tiziodcaio
Maintainer: tiziodcaio (xiota)
Last Packager: xiota
Votes: 33
Popularity: 3.08
First Submitted: 2023-05-06 18:16 (UTC)
Last Updated: 2024-05-11 02:11 (UTC)

Required by (352)

Sources (3)

Pinned Comments

xiota commented on 2024-01-18 02:30 (UTC)

Wayland support requires setting a registry variable. See Wine 9.0 Changelog.

wine reg.exe add HKCU\\Software\\Wine\\Drivers /v Graphics /d x11,wayland

tiziodcaio commented on 2023-09-11 14:58 (UTC)

Added wine-staging-wow64, the wine-wow64 package with staging patches!

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

yan12125 commented on 2024-02-21 05:37 (UTC)

Hi, I noticed that some heavy dependencies, like samba and sane, are moved from optdepends to depends in 9.0rc3 [1]. Are they necessary? Maybe it's better to roughly follow dependencies of multilib/wine package, with lib32-* ones excluded.

[1] https://aur.archlinux.org/cgit/aur.git/commit/?h=wine-wow64&id=43e585e4f0d5858d4277d85b20a14f595959919a

xiota commented on 2024-01-20 13:52 (UTC) (edited on 2024-01-20 13:56 (UTC) by xiota)

@tiziodcaio The variables make common details between packages easier to keep in sync. It's fine if you prefer not to use them.

When --with-wayland is used, configure will stop with an error when depends are missing.

When it is not used, build will continue without wayland support. Previously, depends were missing and wayland support was not being built. So this major 9.0 feature was missing. Currently, depends are present, so wayland support would be built. However, if depends change, wayland support would again stop being built.

tiziodcaio commented on 2024-01-20 13:05 (UTC)

Yes @loathingkernel, now I will fix. When I saw @xiota adding them I was a bit confused by the sintax, I think it complicates things that might be simpler... Anyway, why it was added the --with-wayland flag? It appears to not be necessary as into https://gitlab.winehq.org/wine/wine/-/blob/wine-9.0/configure.ac?ref_type=tags#L1397

loathingkernel commented on 2024-01-20 12:36 (UTC) (edited on 2024-01-20 12:37 (UTC) by loathingkernel)

Please do not make PKGBUILDs configurable in terms of sources and build options. Yes, it might be useful but scripts on the AUR should ideally be easily inspect-able without requiring effort to decode the conditionals.

There is no good reason to use two different switches to alter sources and build options while making the script that much harder to quickly parse. The same consistency when updating a script could be achieved with a good diff tool.

xiota commented on 2024-01-18 02:30 (UTC)

Wayland support requires setting a registry variable. See Wine 9.0 Changelog.

wine reg.exe add HKCU\\Software\\Wine\\Drivers /v Graphics /d x11,wayland

yan12125 commented on 2023-12-18 15:20 (UTC)

Cool, thanks!

yan12125 commented on 2023-12-18 04:55 (UTC)

@xiota: Thank you very much for the update for pcsclite!

Here is a minor issue:

wine-wow64: /usr/share/fontconfig/conf.avail exists in filesystem

which can be fixed with:

diff --git a/PKGBUILD b/PKGBUILD
index 8760d61..23d5e2d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -105,7 +105,7 @@ package() {
   ln -sf /usr/bin/wine "$pkgdir"/usr/bin/wine64

   # Font aliasing settings for Win32 applications
-  install -Dm644 "$srcdir"/30-win32-aliases.conf "$pkgdir"/usr/share/fontconfig/conf.avail
+  install -Dm644 "$srcdir"/30-win32-aliases.conf -t "$pkgdir"/usr/share/fontconfig/conf.avail
   install -d "$pkgdir"/usr/share/fontconfig/conf.default
   ln -s ../conf.avail/30-win32-aliases.conf "$pkgdir"/usr/share/fontconfig/conf.default/30-win32-aliases.conf

xiota commented on 2023-12-17 12:24 (UTC) (edited on 2024-01-02 07:18 (UTC) by xiota)

@daprutser The change you've requested doesn't make sense for this package.

  • This package is capable of running 32-bit binaries in wow64 mode. (Try running the 32-bit version of audacity.)
    • Emulating win98 isn't a common use case nowadays. However, the issue is fixed in commit 3fb88216.
    • For many users, the point of using this package is to drop lib32/multilib depends.
  • Building twice wastes resources.
    • At least doubles build time.
    • Storage requirements increase to 1360MB, from 490MB.