Not possible install wine32 on Xubuntu 22.04

Questions about Wine on Linux
Locked
herbertpfp
Newbie
Newbie
Posts: 2
Joined: Sun Nov 12, 2023 12:21 pm

Not possible install wine32 on Xubuntu 22.04

Post by herbertpfp »

I'm trying very hard to install wine 32 on my Xubuntu 22.04, but it is not possible because unmet dependencies like libwebp7:i386. If I install this package it's possible to uninstall ***all the programs*** of my OS (the new version is 1.3.2 and the 32 bits was 1.2.2). I tried to install libwebp from source. In the past I had wine32 but was not possible to install Gimp, Shotwell, etc with the 32 bits version of libwebp7:i386. I tried to install wine dependencies typing "sudo apt-get build-dep wine32 wine-devel" and tried to install wine from source, when I type "./configure" I receive the message:

configure: libxcursor 32-bit development files not found, the Xcursor extension won't be supported.
configure: libxi 32-bit development files not found, the Xinput extension won't be supported.
configure: XShm 32-bit development files not found, X Shared Memory won't be supported.
configure: XShape 32-bit development files not found, XShape won't be supported.
configure: libXxf86vm 32-bit development files not found, XFree86 Vidmode won't be supported.
configure: libxrandr 32-bit development files not found, XRandr won't be supported.
configure: libxfixes 32-bit development files not found, Xfixes won't be supported.
configure: libxinerama 32-bit development files not found, multi-monitor setups won't be supported.
configure: libxcomposite 32-bit development files not found, Xcomposite won't be supported.
configure: libOSMesa 32-bit development files not found (or too old), OpenGL rendering in bitmaps won't be supported.
configure: Wayland 32-bit development files not found, the Wayland driver won't be supported.
configure: OpenCL 32-bit development files not found, OpenCL won't be supported.
configure: pcap 32-bit development files not found, wpcap won't be supported.
configure: libpcsclite not found, smart cards won't be supported.
configure: libdbus 32-bit development files not found, no dynamic device support.
configure: libgnutls 32-bit development files too old, bcrypt encryption won't be supported.
configure: libsane 32-bit development files not found, scanners won't be supported.
configure: libusb-1.0 32-bit development files not found (or too old), USB devices won't be supported.
configure: libv4l2 32-bit development files not found.
configure: libgphoto2 32-bit development files not found, digital cameras won't be supported.
configure: libgphoto2_port 32-bit development files not found, digital cameras won't be auto-detected.
configure: libpulse 32-bit development files not found or too old, Pulse won't be supported.
configure: gstreamer-1.0 base plugins 32-bit development files not found, GStreamer won't be supported.
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be supported.
configure: libudev 32-bit development files not found, plug and play won't be supported.
configure: libSDL2 32-bit development files not found, SDL2 won't be supported.
configure: libcapi20 32-bit development files not found, ISDN won't be supported.
configure: libcups 32-bit development files not found, CUPS won't be supported.
configure: fontconfig 32-bit development files not found, fontconfig won't be supported.
configure: libkrb5 32-bit development files not found (or too old), Kerberos won't be supported.
configure: libnetapi not found, Samba NetAPI won't be supported.
configure: libvulkan and libMoltenVK 32-bit development files not found, Vulkan won't be supported.

configure: WARNING: libxrender 32-bit development files not found, XRender won't be supported.

configure: WARNING: libgnutls 32-bit development files not found, no schannel support.

configure: WARNING: No sound system was found. Windows applications will be silent.

configure: Finished. Do 'make' to compile Wine.


I think it's not possible to install wine32 on Ubuntu anymore because the support for 32 bits is weak
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Not possible install wine32 on Xubuntu 22.04

Post by jkfloris »

I'm trying very hard to install wine 32 on my Xubuntu 22.04, but it is not possible because unmet dependencies like libwebp7:i386. If I install this package it's possible to uninstall ***all the programs*** of my OS (the new version is 1.3.2 and the 32 bits was 1.2.2)
Version 1.2.2 is the official Ubuntu Jammy version of libwebp7. Where did this new version come from?

Code: Select all

apt policy libwebp7:{amd64,i386}
herbertpfp
Newbie
Newbie
Posts: 2
Joined: Sun Nov 12, 2023 12:21 pm

Re: Not possible install wine32 on Xubuntu 22.04

Post by herbertpfp »

apt policy libwebp7:{amd64,i386}
libwebp7:
Instalado: 1.3.2-0.3~ppa1~jammy1
Candidato: 1.3.2-0.3~ppa1~jammy1
Tabela de versão:
*** 1.3.2-0.3~ppa1~jammy1 500
500 https://ppa.launchpadcontent.net/bleedi ... eed/ubuntu jammy/main amd64 Packages
100 /var/lib/dpkg/status
1.2.2-2ubuntu0.22.04.2 500
500 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages
500 http://archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages
1.2.2-2 500
500 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages
libwebp7:i386:
Instalado: (nenhum)
Candidato: 1.2.2-2ubuntu0.22.04.2
Tabela de versão:
1.2.2-2ubuntu0.22.04.2 500
500 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages
500 http://archive.ubuntu.com/ubuntu jammy-security/main i386 Packages
1.2.2-2 500
500 http://archive.ubuntu.com/ubuntu jammy/main i386 Packages
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Not possible install wine32 on Xubuntu 22.04

Post by jkfloris »

The bleedingedge PPA does not have 32-bit packages for libwebp7.
You will need to downgrade the packages to the official Ubuntu version.

Code: Select all

sudo apt install libwebp7:{amd64,i386}=1.2.2-2ubuntu0.22.04.2
Locked