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/libmesa | |
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/libmesa')
-rw-r--r-- | lib/libGL/libmesa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libGL/libmesa/Makefile b/lib/libGL/libmesa/Makefile index 3bcfab47f..34d9aa408 100644 --- a/lib/libGL/libmesa/Makefile +++ b/lib/libGL/libmesa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2008/11/05 07:18:26 todd Exp $ +# $OpenBSD: Makefile,v 1.7 2009/01/10 16:06:51 oga Exp $ MESA= ${.CURDIR}/../../../dist/Mesa/src/mesa MESA_INCLUDE= ${.CURDIR}/../../../dist/Mesa/include @@ -18,7 +18,7 @@ CPPFLAGS+= \ -I${MESA}/shader/grammar \ -I${MESA}/shader/slang \ -I${X11BASE}/include \ - -I${X11BASE}/include/drm \ + -I/usr/include/dev/pci/drm \ -DGLX_INDIRECT_RENDERING \ -DGLX_DIRECT_RENDERING \ -DUSE_EXTERNAL_DXTN_LIB=1 \ |