diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2008-12-14 14:18:58 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-01-18 09:49:06 -0800 |
commit | e1c8ee215797fa8c6a3a5421bb6f99b58064248b (patch) | |
tree | 7747a213440c086ad8c8aa281def354ca2abe009 /glx | |
parent | ca46c01869768a8661a9d8a71493ed5f0760a8ab (diff) |
Don't reuse PKG_CHECK_MODULES identifiers
Using GL for the PKG_CHECK_MODULES identifier multiple times means only
the first call will actually be used. Later calls will be skipped due to
GL_CFLAGS and GL_LIBS already being set. This changes DRI to using a
different identifier and DMX to just reusing GL_CFLAGS.
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
Diffstat (limited to 'glx')
-rw-r--r-- | glx/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/glx/Makefile.am b/glx/Makefile.am index bec35bf21..2537db865 100644 --- a/glx/Makefile.am +++ b/glx/Makefile.am @@ -7,6 +7,7 @@ noinst_LTLIBRARIES = libglx.la $(GLXDRI_LIBRARY) AM_CFLAGS = \ @DIX_CFLAGS@ \ @GL_CFLAGS@ \ + @DRI_CFLAGS@ \ @XLIB_CFLAGS@ \ @LIBDRM_CFLAGS@ \ @DRIPROTO_CFLAGS@ \ |