I need Wine in a RHEL8 environment.
Getting 6.0.2 to work via package manager worked out fine.
Since 6.0.2 is a bit outdated though, I'd prefer to build and use 8.0.2. This would allow me to build future new releases as well. (Note: I need WOW64 to work)
So far I've gotten to the point where I can build (configure + make) both 64 and 32 bit Wine, the 32 bit configure is full of complaints though:
The commands I used:
Code: Select all
cd <path to 64 bit build folder>
<path to Wine source>/configure --enable-win64
make
cd <path to 32 bit build folder>
PKG_CONFIG_PATH=/usr/lib <path to Wine source>/configure --with-wine64=<path to 64 bit build folder>
For my specific situation, It's possible I don't need to solve any GUI related complaints, since I don't think any 32-bit thing in my use case will have a GUI.wine: could not load kernel32.dll, status c0000135
32-bit configure complaints:
configure: MinGW compiler not found, cross-compiling PE files won't be supported.
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: 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: 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: 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: No OpenGL library found on this system.
OpenGL and Direct3D won't be supported.
configure: WARNING: No sound system was found. Windows applications will be silent.