xorg-wrapper.c contains few "#ifdef WITH_LIBDRM" sections that are never activated even if WITH_LIBDRM is defined in xorg-config.h That's because xorg-wrapper.c doesn't include xorg-config.h (directly or indirectly). Fix: --- xorg-server-1.18.0/hw/xfree86/xorg-wrapper.c~ 2015-11-10 19:37:11.000000000 +0100 +++ xorg-server-1.18.0/hw/xfree86/xorg-wrapper.c 2015-11-10 19:37:18.640853466 +0100 @@ -24,6 +24,7 @@ */ #include "dix-config.h" +#include "xorg-config.h" #include <errno.h> #include <fcntl.h>
the patch got applied and also included in 1.18.1, but there's a new bug on Debian assumed to be caused by this: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814313
..though it could be just a pkg dep issue, will follow up later
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.