[PATCH 1/1] xf86drm.c: Include limits.h to fix build error on Solaris and with musl

Bernd Kuhls bernd.kuhls at t-online.de
Sun Sep 27 10:20:15 PDT 2015


musl's strict implementation requires #include <limits.h> for PATH_MAX.

Patch suggested by evgeny for Solaris:
https://bugs.freedesktop.org/show_bug.cgi?id=92082

A similar patch is needed for musl:
http://git.buildroot.net/buildroot/tree/package/btrfs-progs/0003-compile-fix-undefined-PATH_MAX-under-musl.patch

Signed-off-by: Bernd Kuhls <bernd.kuhls at t-online.de>
---
 xf86drm.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/xf86drm.c b/xf86drm.c
index a9f5c29..ec985eb 100644
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -53,6 +53,7 @@
 #include <sys/ioctl.h>
 #include <sys/time.h>
 #include <stdarg.h>
+#include <limits.h>
 #ifdef HAVE_SYS_MKDEV_H
 # include <sys/mkdev.h> /* defines major(), minor(), and makedev() on Solaris */
 #endif
-- 
2.5.3



More information about the dri-devel mailing list