OSDN Git Service

Add missing X11_INCLUDES to egl/drivers/demo and egl/main.
authorPeter Hutterer <peter.hutterer@who-t.net>
Mon, 20 Jul 2009 06:11:26 +0000 (16:11 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 21 Jul 2009 01:45:49 +0000 (11:45 +1000)
Compiling mesa on a system with no X headers installed in the default
include paths fails due to missing X11 includes. The header includes are
picked up by configure but not applied.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/egl/drivers/demo/Makefile
src/egl/main/Makefile

index 26694c9..444dfb3 100644 (file)
@@ -4,7 +4,7 @@ TOP = ../../../..
 include $(TOP)/configs/current
 
 
-INCLUDE_DIRS = -I$(TOP)/include -I$(TOP)/src/egl/main
+INCLUDE_DIRS = -I$(TOP)/include -I$(TOP)/src/egl/main $(X11_INCLUDES)
 
 
 SOURCES = demo.c
index e1ff879..7cab005 100644 (file)
@@ -4,7 +4,7 @@ TOP = ../../..
 include $(TOP)/configs/current
 
 
-INCLUDE_DIRS = -I$(TOP)/include -I$(TOP)/src/mesa/glapi
+INCLUDE_DIRS = -I$(TOP)/include -I$(TOP)/src/mesa/glapi $(X11_INCLUDES)
 
 HEADERS = \
        eglcompiler.h \