Bug #11510: Fix build without RECORD.

This commit is contained in:
Adam Jackson 2008-03-24 13:37:42 -04:00
parent 87bfd3bd96
commit 862ff9ac92
2 changed files with 10 additions and 2 deletions

View File

@ -30,6 +30,10 @@ if DBE
DBE_DIR=dbe DBE_DIR=dbe
endif endif
if RECORD
RECORD_DIR=record
endif
SUBDIRS = \ SUBDIRS = \
doc \ doc \
include \ include \
@ -48,7 +52,7 @@ SUBDIRS = \
$(AFB_DIR) \ $(AFB_DIR) \
$(CFB_DIR) \ $(CFB_DIR) \
$(CFB32_DIR) \ $(CFB32_DIR) \
record \ $(RECORD_DIR) \
xfixes \ xfixes \
damageext \ damageext \
$(XTRAP_DIR) \ $(XTRAP_DIR) \

View File

@ -26,6 +26,10 @@ if MFB
MFBMOD = libmfb.la MFBMOD = libmfb.la
endif endif
if RECORD
RECORDMOD = librecord.la
endif
module_LTLIBRARIES = $(AFBMOD) \ module_LTLIBRARIES = $(AFBMOD) \
$(CFBMOD) \ $(CFBMOD) \
libfb.la \ libfb.la \
@ -34,7 +38,7 @@ module_LTLIBRARIES = $(AFBMOD) \
libshadow.la libshadow.la
extsmoduledir = $(moduledir)/extensions extsmoduledir = $(moduledir)/extensions
extsmodule_LTLIBRARIES = librecord.la \ extsmodule_LTLIBRARIES = $(RECORDMOD) \
$(DBEMOD) \ $(DBEMOD) \
$(GLXMODS) \ $(GLXMODS) \
$(XTRAPMOD) $(XTRAPMOD)