From 113c0bb4fd764da8c08d8f30abe350c7650c9fc2 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 19 Oct 2015 23:15:36 +0200 Subject: [PATCH] hurd: fix xorg-wrapper build hurd does not have any PATH_MAX limitation. misc.h provides a default value which is fine here. Reviewed-by: Adam Jackson Signed-off-by: Samuel Thibault --- hw/xfree86/xorg-wrapper.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/xfree86/xorg-wrapper.c b/hw/xfree86/xorg-wrapper.c index 6f658d7e2..4c37cfcb9 100644 --- a/hw/xfree86/xorg-wrapper.c +++ b/hw/xfree86/xorg-wrapper.c @@ -44,6 +44,8 @@ #include /* For DRM_DEV_NAME */ #endif +#include "misc.h" + #define CONFIG_FILE SYSCONFDIR "/X11/Xwrapper.config" static const char *progname;