diff options
author | Dima Zavin <[email protected]> | 2008-08-21 10:40:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-09-11 11:43:56 -0600 |
commit | 912488a8d016834349273acac88be85a6afadcc0 (patch) | |
tree | 23b3c2e20d35aceaa5d309a629764719e85f2bba /src/egl | |
parent | d50d68a1c940ed9c8d8c65e8e33667fa90d5baa1 (diff) |
egl_dri/egl_xdri: Makefiles should use pkg-config to find libdrm.
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/dri/Makefile | 2 | ||||
-rw-r--r-- | src/egl/drivers/xdri/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/drivers/dri/Makefile b/src/egl/drivers/dri/Makefile index bdc683a0c16..a41aca43709 100644 --- a/src/egl/drivers/dri/Makefile +++ b/src/egl/drivers/dri/Makefile @@ -8,7 +8,7 @@ include $(TOP)/configs/current INCLUDE_DIRS = \ -I. \ -I/usr/include \ - -I/usr/include/drm \ + $(shell pkg-config --cflags-only-I libdrm) \ -I$(TOP)/include \ -I$(TOP)/include/GL/internal \ -I$(TOP)/src/mesa \ diff --git a/src/egl/drivers/xdri/Makefile b/src/egl/drivers/xdri/Makefile index 252d00b6c22..9a2b7e0a9d8 100644 --- a/src/egl/drivers/xdri/Makefile +++ b/src/egl/drivers/xdri/Makefile @@ -13,7 +13,7 @@ DRIVER_NAME = egl_xdri.so INCLUDE_DIRS = \ -I. \ -I/usr/include \ - -I/usr/include/drm \ + $(shell pkg-config --cflags-only-I libdrm) \ -I$(TOP)/include \ -I$(TOP)/include/GL/internal \ -I$(TOP)/src/mesa/glapi \ |