diff options
author | Alexander Larsson <alexl@redhat.com> | 2001-01-03 10:45:12 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2001-01-03 10:45:12 +0000 |
commit | d5b358fe3e5123842533ea445460d8a337eced5d (patch) | |
tree | c51bb9232a7933ca280f68737a0c60b4c9b11250 /pango/modules.h | |
parent | dc23b8bf572adc64cb57be39fdaf02732e50bb72 (diff) | |
download | pango-d5b358fe3e5123842533ea445460d8a337eced5d.tar.gz |
Update the default list of included modules for
2001-01-03 Alexander Larsson <alexl@redhat.com>
* configure.in:
Update the default list of included modules for
--with-included-modules=yes to include all new modules.
Split INCLUDED_MODULES and module-defs.c into per shaper
engine type lists.
* modules/arabic/Makefile.am:
Build libpango-arabic-xft.la if INCLUDE_ARABIC_XFT.
* modules/arabic/arabic-xft.c:
Change module prefix to _pango_arabic_xft_
* modules/basic/Makefile.am:
Build static libs for all included modules.
* modules/basic/basic-ft2.c:
Change module prefix to _pango_basic_ft2_
* modules/basic/basic-xft.c:
Change module prefix to _pango_basic_xft_
* pango/Makefile.am:
Include correct module-defs-XXX in libs.
* pango/modules.h:
Split _pango_included_modules[] into separate lists.
* pango/pangox.c:
* pango/pangoft2.c:
* pango/pangoxft-fontmap.c:
Register built in modules.
Diffstat (limited to 'pango/modules.h')
-rw-r--r-- | pango/modules.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pango/modules.h b/pango/modules.h index 409fb433..2e1b73e2 100644 --- a/pango/modules.h +++ b/pango/modules.h @@ -25,6 +25,8 @@ #ifndef __MODULES_H__ #define __MODULES_H__ -extern PangoIncludedModule _pango_included_modules[]; +extern PangoIncludedModule _pango_included_x_modules[]; +extern PangoIncludedModule _pango_included_xft_modules[]; +extern PangoIncludedModule _pango_included_ft2_modules[]; #endif /* __MODULES_H__ */ |