diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2009-03-17 23:33:04 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-03-18 07:37:08 -0700 |
commit | 13345a95400db632a7800e6fd8b8fdb74bba3c38 (patch) | |
tree | 0210c20107ad55fea14f8992ac207f6d3bbaf2da | |
parent | f02aaa83c18d9d6192caa68803cdc34c9526c6e2 (diff) |
Use the specified X11 headers for xlib mesa
The xlib build was using the system's Xlib headers or bombing if they
weren't available.
-rw-r--r-- | src/mesa/drivers/x11/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/x11/Makefile b/src/mesa/drivers/x11/Makefile index d2780e62c9..5e427d2d5c 100644 --- a/src/mesa/drivers/x11/Makefile +++ b/src/mesa/drivers/x11/Makefile @@ -41,7 +41,8 @@ OBJECTS = $(SOURCES:.c=.o) INCLUDE_DIRS = \ -I$(TOP)/include \ -I$(TOP)/src/mesa \ - -I$(TOP)/src/mesa/main + -I$(TOP)/src/mesa/main \ + $(X11_INCLUDES) CORE_MESA = $(TOP)/src/mesa/libmesa.a $(TOP)/src/mesa/libglapi.a |