summaryrefslogtreecommitdiff
path: root/modules/indic
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-01-16 10:10:23 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-01-16 10:10:23 +0000
commit6cc141fdd95ba7b2623f176e7a4321524d600641 (patch)
treeb8acaef91f4886ca12bc8fffbf12f9a600fa878e /modules/indic
parent240877fc00047a2898f8f8d338684c2e4e087b90 (diff)
downloadpango-6cc141fdd95ba7b2623f176e7a4321524d600641.tar.gz
Fixes bug #71414, allowing to disable building/installing modules.
2006-01-16 Behdad Esfahbod <behdad@gnome.org> Fixes bug #71414, allowing to disable building/installing modules. * configure.in: Add support for --with-dynamic-modules. * */Makefile.am: Adapt to the above change.
Diffstat (limited to 'modules/indic')
-rw-r--r--modules/indic/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/indic/Makefile.am b/modules/indic/Makefile.am
index 06ee65de..c604492d 100644
--- a/modules/indic/Makefile.am
+++ b/modules/indic/Makefile.am
@@ -22,9 +22,11 @@ INCLUDES += $(FREETYPE_CFLAGS)
if INCLUDE_INDIC_FC
noinst_LTLIBRARIES += libpango-indic-fc.la
else
+if DYNAMIC_INDIC_FC
module_LTLIBRARIES += pango-indic-fc.la
endif
endif
+endif
fc_sources = \
indic-fc.c \
@@ -42,6 +44,7 @@ libpango_indic_fc_la_CFLAGS = -DPANGO_MODULE_PREFIX=_pango_indic_fc
included-modules: $(noinst_LTLIBRARIES)
+dynamic-modules: $(module_LTLIBRARIES)
-.PHONY: included-modules
+.PHONY: included-modules dynamic-modules