diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-01-10 16:06:52 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-01-10 16:06:52 +0000 |
commit | 1d16daa667e01e8cff2a01d3f1702a4206859b74 (patch) | |
tree | 0544e3c986498ab11817ec9eb00e40d227317549 /lib/libGL/dri | |
parent | d84c4a5d582bbdc63b89acdbf9181c79abef547e (diff) |
Switch over to using the kernel *_drm.h headers instead of the copies
thereof provided with libdrm. This has been annoying me forever, and it
a blight caused by developing widely used drivers out of the kernel
tree.
ok matthieu@
Diffstat (limited to 'lib/libGL/dri')
-rw-r--r-- | lib/libGL/dri/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libGL/dri/Makefile.inc b/lib/libGL/dri/Makefile.inc index d8e9e1c7b..ea5fec1db 100644 --- a/lib/libGL/dri/Makefile.inc +++ b/lib/libGL/dri/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.7 2008/11/02 15:01:32 matthieu Exp $ +# $OpenBSD: Makefile.inc,v 1.8 2009/01/10 16:06:51 oga Exp $ .include <bsd.xconf.mk> MESA= ${.CURDIR}/../../../../dist/Mesa/src/mesa @@ -35,7 +35,7 @@ INCLUDES = \ -I$(TOP)/src/egl/main \ -I$(TOP)/src/egl/drivers/dri \ -I$(X11BASE)/include \ - -I$(X11BASE)/include/drm + -I/usr/include/dev/pci/drm .if ${MACHINE_ARCH} == "i386" CPPFLAGS += \ |