diff options
author | Tor Lillqvist <tml@iki.fi> | 2000-08-21 13:21:03 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2000-08-21 13:21:03 +0000 |
commit | 91d66774aa844a8df1ea0311d71b82059d8c3581 (patch) | |
tree | f75681b9a03e9dadc8451f317549e2ad980ebd6a /configure.in | |
parent | cd3238a63b904fd0792ca04f1dac7ff04ef98eb4 (diff) | |
download | pango-91d66774aa844a8df1ea0311d71b82059d8c3581.tar.gz |
Get font directory path with pango_config_key_get("PangoFT2/FontPath"). If
2000-08-21 Tor Lillqvist <tml@iki.fi>
* pango/pangoft2-fontmap.c: Get font directory path with
pango_config_key_get("PangoFT2/FontPath"). If no such key exists
in the pangorc file, use the ft2fonts subdirectory of
LIBDIR/pango, and on Windows, also %WinDir%\fonts.
* pango/{pango,pangoft2,pangowin32}.rc.in: New files (resource
files used when building Win32 DLLs, contain version information).
* pango/Makefile.am: Add the new files.
* configure.in: Define major and minor version numbers separately.
Output also the makefile.mingw and *.rc files.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d21ae156..6d8cb392 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,13 @@ dnl Process this file with autoconf to create configure. +PANGO_MAJOR_VERSION=0 +PANGO_MINOR_VERSION=12 + +AC_SUBST(PANGO_MAJOR_VERSION) +AC_SUBST(PANGO_MINOR_VERSION) + AC_INIT(ChangeLog) -AM_INIT_AUTOMAKE(pango, 0.12) +AM_INIT_AUTOMAKE(pango, $PANGO_MAJOR_VERSION.$PANGO_MINOR_VERSION) AM_CONFIG_HEADER(config.h) @@ -222,14 +228,19 @@ AC_CHECK_HEADER(unistd.h, AC_DEFINE(HAVE_UNISTD_H)) AC_OUTPUT([ Makefile pango/Makefile +pango/makefile.mingw +pango/pango.rc +pango/pangoft2.rc modules/Makefile modules/arabic/Makefile modules/basic/Makefile +modules/basic/makefile.mingw modules/devanagari/Makefile modules/hangul/Makefile modules/tamil/Makefile modules/thai/Makefile examples/Makefile +examples/makefile.mingw docs/Makefile tools/Makefile fonts/Makefile @@ -240,4 +251,3 @@ pangox.pc ],[case "$CONFIG_FILES" in *pango-config*)chmod +x pango-config;; esac]) - |