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 /pango/pangoft2-private.h | |
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 'pango/pangoft2-private.h')
-rw-r--r-- | pango/pangoft2-private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/pangoft2-private.h b/pango/pangoft2-private.h index 96be9343..bb8c84eb 100644 --- a/pango/pangoft2-private.h +++ b/pango/pangoft2-private.h @@ -26,9 +26,9 @@ #include "pangoft2.h" /* Debugging... */ -#define DEBUGGING 1 +#define DEBUGGING 0 -#ifdef DEBUGGING +#if defined(DEBUGGING) && DEBUGGING #ifdef __GNUC__ #define PING(printlist) \ (g_print ("%s:%d ", __PRETTY_FUNCTION__, __LINE__), \ |