[PATCH] nouveau: fix 32bit builds

Emil Velikov emil.l.velikov at gmail.com
Sun Sep 28 11:21:50 PDT 2014


On 32bit platforms we have to provide _FILE_OFFSET_BITS via config.h
otherwise the static assert in drm_munmap will trigger.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=84428
Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com>
---
 nouveau/private.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/nouveau/private.h b/nouveau/private.h
index bf9db04..8176267 100644
--- a/nouveau/private.h
+++ b/nouveau/private.h
@@ -1,6 +1,10 @@
 #ifndef __NOUVEAU_LIBDRM_PRIVATE_H__
 #define __NOUVEAU_LIBDRM_PRIVATE_H__
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <libdrm.h>
 #include <xf86drm.h>
 #include <xf86atomic.h>
-- 
2.1.0



More information about the dri-devel mailing list