diff options
author | marha <marha@users.sourceforge.net> | 2009-11-03 12:05:23 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-03 12:05:23 +0000 |
commit | fab66ae6256d6173752015025e78db67e5e45567 (patch) | |
tree | bb1c102545cc1c226cc747c01a5918bba11d52cb /libXfont/config.h | |
parent | 7f6aaf6514fccd3e4d6af2d29c2d1f7b4cb8c7d8 (diff) | |
download | vcxsrv-fab66ae6256d6173752015025e78db67e5e45567.tar.gz vcxsrv-fab66ae6256d6173752015025e78db67e5e45567.tar.bz2 vcxsrv-fab66ae6256d6173752015025e78db67e5e45567.zip |
Added config.h for libXfont. Now the local fonts are loaded correctly.
Diffstat (limited to 'libXfont/config.h')
-rw-r--r-- | libXfont/config.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libXfont/config.h b/libXfont/config.h new file mode 100644 index 000000000..5f85c98d4 --- /dev/null +++ b/libXfont/config.h @@ -0,0 +1,29 @@ +/* Support bdf format bitmap font files */ +#define XFONT_BDFFORMAT 1 + +/* Support bitmap font files */ +#define XFONT_BITMAP 1 + +/* Support built-in fonts */ +#define XFONT_BUILTINS 1 + +/* Support the X Font Services Protocol */ +#define XFONT_FC 1 + +/* Support fonts in files */ +#define XFONT_FONTFILE 1 + +/* Support FreeType rasterizer for nearly all font file formats */ +#define XFONT_FREETYPE 1 + +/* Support pcf format bitmap font files */ +#define XFONT_PCFFORMAT 1 + +/* Support snf format bitmap font files */ +#define XFONT_SNFFORMAT 1 + +/* Support bzip2 for bitmap fonts */ +#undef X_BZIP2_FONT_COMPRESSION + +/* Support gzip for bitmap fonts */ +#define X_GZIP_FONT_COMPRESSION 1 |