This is just something I paid attention to in the testbot report:
Marvin testbot@winehq.org wrote:
configure: OpenCL 64-bit development files not found, OpenCL won't be supported. configure: pcap 64-bit development files not found, wpcap won't be supported. configure: libdbus 64-bit development files not found, no dynamic device support. configure: lib(n)curses 64-bit development files not found, curses won't be supported. configure: libsane 64-bit development files not found, scanners won't be supported. configure: libv4l 64-bit development files not found. configure: libgphoto2 64-bit development files not found, digital cameras won't be supported. configure: libgphoto2_port 64-bit development files not found, digital cameras won't be auto-detected. configure: liblcms2 64-bit development files not found, Color Management won't be supported. configure: libz 64-bit development files not found, data compression won't be supported. configure: libpulse 64-bit development files not found or too old, Pulse won't be supported. configure: gstreamer-1.0 base plugins 64-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 64-bit development files not found, plug and play won't be supported. configure: libSDL2 64-bit development files not found, SDL2 won't be supported. configure: libcapi20 64-bit development files not found, ISDN won't be supported. configure: libcups 64-bit development files not found, CUPS won't be supported. configure: fontconfig 64-bit development files not found, fontconfig won't be supported. configure: libgsm 64-bit development files not found, gsm 06.10 codec won't be supported. configure: libkrb5 64-bit development files not found, Kerberos won't be supported. configure: libgssapi_krb5 64-bit development files not found (or too old), no Kerberos SSP support. configure: libtiff 64-bit development files not found, TIFF won't be supported. configure: libmpg123 64-bit development files not found (or too old), mp3 codec won't be supported. configure: libopenal 64-bit development files not found (or too old), OpenAL won't be supported. configure: openal-soft 64-bit development files not found (or too old), XAudio2 won't be supported. configure: libvulkan 64-bit development files not found, Vulkan won't be supported. configure: libldap (OpenLDAP) 64-bit development files not found, LDAP won't be supported.
configure: WARNING: gettext tools not found (or too old), translations won't be built. configure: WARNING: libxml2 64-bit development files not found (or too old), XML won't be supported. configure: WARNING: libxslt 64-bit development files not found, xslt won't be supported. configure: WARNING: libgnutls 64-bit development files not found, no schannel support. configure: WARNING: libjpeg 64-bit development files not found, JPEG won't be supported. configure: WARNING: libpng 64-bit development files not found, PNG won't be supported. configure: WARNING: No sound system was found. Windows applications will be silent. configure: Finished. Do 'make' to compile Wine.
Could this configure checks be satisfied? It seems suboptimal that a Wine testbot is missing a lot of optional components a test may depend upon and try to exercise.
On Thu, 5 Apr 2018, Dmitry Timoshkov wrote:
This is just something I paid attention to in the testbot report:
Marvin testbot@winehq.org wrote:
configure: OpenCL 64-bit development files not found, OpenCL won't be supported.
[...]
configure: libldap (OpenLDAP) 64-bit development files not found, LDAP won't be supported.
configure: WARNING: gettext tools not found (or too old), translations won't be built. configure: WARNING: libxml2 64-bit development files not found (or too old), XML won't be supported. configure: WARNING: libxslt 64-bit development files not found, xslt won't be supported. configure: WARNING: libgnutls 64-bit development files not found, no schannel support. configure: WARNING: libjpeg 64-bit development files not found, JPEG won't be supported. configure: WARNING: libpng 64-bit development files not found, PNG won't be supported. configure: WARNING: No sound system was found. Windows applications will be silent. configure: Finished. Do 'make' to compile Wine.
Could this configure checks be satisfied? It seems suboptimal that a Wine testbot is missing a lot of optional components a test may depend upon and try to exercise.
These don't matter since the build VM is only used to generate PE32 executables which don't use the native Linux libraries.
More precisely the build VM has three Wine checkouts: * One where used to build Wine's build tools such as wrc. This is the checkout that generates the above warnings. But this checkout is not actually used to build any Wine dll or executable. * One which uses MinGW to build 32 bit Windows executables. * One which uses MinGW to build 64 bit Windows executables.
The latter two are the ones that matter but they don't need the native Linux libraries.
Francois Gouget fgouget@codeweavers.com wrote:
Marvin testbot@winehq.org wrote:
configure: OpenCL 64-bit development files not found, OpenCL won't be supported.
[...]
configure: libldap (OpenLDAP) 64-bit development files not found, LDAP won't be supported.
configure: WARNING: gettext tools not found (or too old), translations won't be built. configure: WARNING: libxml2 64-bit development files not found (or too old), XML won't be supported. configure: WARNING: libxslt 64-bit development files not found, xslt won't be supported. configure: WARNING: libgnutls 64-bit development files not found, no schannel support. configure: WARNING: libjpeg 64-bit development files not found, JPEG won't be supported. configure: WARNING: libpng 64-bit development files not found, PNG won't be supported. configure: WARNING: No sound system was found. Windows applications will be silent. configure: Finished. Do 'make' to compile Wine.
Could this configure checks be satisfied? It seems suboptimal that a Wine testbot is missing a lot of optional components a test may depend upon and try to exercise.
These don't matter since the build VM is only used to generate PE32 executables which don't use the native Linux libraries.
More precisely the build VM has three Wine checkouts:
- One where used to build Wine's build tools such as wrc. This is the checkout that generates the above warnings. But this checkout is not actually used to build any Wine dll or executable.
- One which uses MinGW to build 32 bit Windows executables.
- One which uses MinGW to build 64 bit Windows executables.
The latter two are the ones that matter but they don't need the native Linux libraries.
Thanks for the explanation, I had an impression that testbot is also supposed to create builds for Linux runs, is that a different VM?
On Fri, 6 Apr 2018, Dmitry Timoshkov wrote: [...]
Thanks for the explanation, I had an impression that testbot is also supposed to create builds for Linux runs, is that a different VM?
The TestBot does not run the tests in Wine though having it do so is a goal.
The Linux results that one can find on test.winehq.org correspond to real non-TestBot machines that compile Wine themselves (mostly cw1, cw2 and my laptop). I have recently made a pass to make sure they have all of the Wine dependencies and, as far as I know, all they are missing is GStreamer 32 bit support because those are really annoying to set up (essentially they require fixing a couple of packages to make them multi-arch compatible).