blob: 5f85c98d4e623b5b7fa5af0fc53ab0df202c28b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
|