Fix build when AIGLX is false.
This commit is contained in:
parent
9ed3463450
commit
eb63e50d95
|
@ -1,3 +1,8 @@
|
||||||
|
2006-03-12 Matthieu Herrb <matthieu.herrb@laas.fr>
|
||||||
|
|
||||||
|
* hw/xfree86/dixmods/Makefile.am
|
||||||
|
Fix build when AIGLX is false.
|
||||||
|
|
||||||
2006-03-11 Eric Anholt <anholt@FreeBSD.org>
|
2006-03-11 Eric Anholt <anholt@FreeBSD.org>
|
||||||
|
|
||||||
* exa/exa.h:
|
* exa/exa.h:
|
||||||
|
|
|
@ -73,9 +73,12 @@ libfb_la_LIBADD = $(top_builddir)/fb/libfb.la
|
||||||
libfb_la_SOURCES = $(top_builddir)/fb/fbcmap.c fbmodule.c
|
libfb_la_SOURCES = $(top_builddir)/fb/fbcmap.c fbmodule.c
|
||||||
|
|
||||||
libglx_la_LDFLAGS = -avoid-version
|
libglx_la_LDFLAGS = -avoid-version
|
||||||
|
if AIGLX
|
||||||
|
GLXDRI_LIBRARY = $(top_builddir)/GL/glx/libglxdri.la
|
||||||
|
endif
|
||||||
libglx_la_LIBADD = \
|
libglx_la_LIBADD = \
|
||||||
$(top_builddir)/GL/glx/libglx.la \
|
$(top_builddir)/GL/glx/libglx.la \
|
||||||
$(top_builddir)/GL/glx/libglxdri.la
|
$(GLXDRI_LIBRARY)
|
||||||
libglx_la_SOURCES = glxmodule.c
|
libglx_la_SOURCES = glxmodule.c
|
||||||
|
|
||||||
libmfb_la_LDFLAGS = -avoid-version
|
libmfb_la_LDFLAGS = -avoid-version
|
||||||
|
|
Loading…
Reference in New Issue