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 /hw/dmx/input | |
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 'hw/dmx/input')
-rw-r--r-- | hw/dmx/input/Makefile.am | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/dmx/input/Makefile.am b/hw/dmx/input/Makefile.am index 8ea500316..47dbd967b 100644 --- a/hw/dmx/input/Makefile.am +++ b/hw/dmx/input/Makefile.am @@ -58,12 +58,10 @@ libdmxinput_a_SOURCES = ChkNotMaskEv.c \ if GLX GLX_DEFS = @GL_CFLAGS@ -GLX_INCS = -I@MESA_SOURCE@/include endif AM_CFLAGS = $(DIX_CFLAGS) \ -I$(top_srcdir)/hw/dmx \ - $(GLX_INCS) \ -DHAVE_DMX_CONFIG_H \ $(GLX_DEFS) \ @DMXMODULES_CFLAGS@ |