summaryrefslogtreecommitdiff
path: root/modules/arabic
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/arabic
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/arabic')
-rw-r--r--modules/arabic/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/arabic/Makefile.am b/modules/arabic/Makefile.am
index d3e459e8..78c488e1 100644
--- a/modules/arabic/Makefile.am
+++ b/modules/arabic/Makefile.am
@@ -22,9 +22,11 @@ INCLUDES += $(FREETYPE_CFLAGS)
if INCLUDE_ARABIC_FC
noinst_LTLIBRARIES += libpango-arabic-fc.la
else
+if DYNAMIC_ARABIC_FC
module_LTLIBRARIES += pango-arabic-fc.la
endif
endif
+endif
fc_sources = \
arabic-fc.c \
@@ -39,5 +41,6 @@ libpango_arabic_fc_la_CFLAGS = -DPANGO_MODULE_PREFIX=_pango_arabic_fc
included-modules: $(noinst_LTLIBRARIES)
+dynamic-modules: $(module_LTLIBRARIES)
-.PHONY: included-modules
+.PHONY: included-modules dynamic-modules