winsys/sw/xlib: fix compile error in xlib_sw_winsys.c.
authorGaetan Nadon <memsize@videotron.ca>
Tue, 17 Sep 2013 19:46:10 +0000 (15:46 -0400)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 19 Sep 2013 17:49:57 +0000 (10:49 -0700)
xlib_sw_winsys.h:5:22: fatal error: X11/Xlib.h: No such file or directory

The compiler cannot find the Xlib.h in the installed system headers.
All supplied include directives point to inside the mesa module.
The X11_CFLAGS variable is undefined (not defined in config.status).

It appears the intent was to use X11_INCLUDES defined in configure.ac.

The Xlib.h file is not installed on my workstation. It is supplied in
the libx11-dev package. This allows an X developer control over which
version of this file is used for X development.

Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/gallium/winsys/sw/xlib/Makefile.am

index 59da37dbb476060aa84befcf80d3e6d18ccc6a8e..ea6b7429d86a6b9cb62fdbce22fdbbea272caf58 100644 (file)
@@ -24,7 +24,7 @@ include $(top_srcdir)/src/gallium/Automake.inc
 
 AM_CPPFLAGS = \
        $(GALLIUM_CFLAGS) \
-       $(X11_CFLAGS)
+       $(X11_INCLUDES)
 
 noinst_LTLIBRARIES = libws_xlib.la