Bug #11510: Fix build without RECORD.
This commit is contained in:
parent
87bfd3bd96
commit
862ff9ac92
|
@ -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) \
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue