diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-01-16 10:10:23 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-01-16 10:10:23 +0000 |
commit | 6cc141fdd95ba7b2623f176e7a4321524d600641 (patch) | |
tree | b8acaef91f4886ca12bc8fffbf12f9a600fa878e /modules/arabic | |
parent | 240877fc00047a2898f8f8d338684c2e4e087b90 (diff) | |
download | pango-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.am | 5 |
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 |