blob: 2f66903bc4f97601cb3dc783a1ee68cf01b55a5b (
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
30
31
|
/* 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
#include <dix-config.h>
|