diff options
author | Dan Nicholson <[email protected]> | 2010-04-18 09:33:03 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2010-04-19 20:21:57 -0700 |
commit | 88be2171e7336201e5ee97ade36ba3de4fe939bf (patch) | |
tree | cf96ceef99bc18ae43e59888a032a8005de73481 /src/gallium/state_trackers/egl | |
parent | 8e5effefc7e1cf147315841894d1548f09b96cbc (diff) |
egl: Pass flags to locate Xlib headers and libraries
eglplatform.h pulls in Xlib.h on X11 platforms. Likewise, the egl glx
driver and egl programs needs to link to libX11. Make sure we use the
locations the user told us about.
Signed-off-by: Dan Nicholson <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/egl')
-rw-r--r-- | src/gallium/state_trackers/egl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/egl/Makefile b/src/gallium/state_trackers/egl/Makefile index 794785006f5..1768241352f 100644 --- a/src/gallium/state_trackers/egl/Makefile +++ b/src/gallium/state_trackers/egl/Makefile @@ -16,6 +16,7 @@ x11_INCLUDES = \ -I$(TOP)/src/gallium/drivers \ -I$(TOP)/src/glx \ -I$(TOP)/src/mesa \ + $(X11_CFLAGS) \ $(shell pkg-config --cflags-only-I libdrm) x11_SOURCES = $(wildcard x11/*.c) \ |