summaryrefslogtreecommitdiffstats
path: root/rules/xorg-lib-Xfont.in
blob: 7c98d6ee9a0c8540b2866c0a09a0b76350492af3 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# These are always required:
# Requires: xproto fontsproto
# Requires.private: fontenc
# Libs.private: -lz -lm

menuconfig XORG_LIB_XFONT
	bool
	select XORG_PROTO_X
	select XORG_PROTO_FONTS
	select XORG_LIB_FONTENC
	select ZLIB if XORG_LIB_XFONT_BUILTIN_FONTS
	select XORG_LIB_XTRANS
	select FREETYPE if XORG_LIB_XFONT_FREETYPE
	select XORG_PROTO_FONTCACHE if XORG_LIB_XFONT_FONTCACHE
	default y
	prompt "libXfont              "
	help
	  X font Library. At least one file based font support must be enabled
	  to make the xorg server (part dix) happy.

config XORG_LIB_XFONT_FREETYPE
	depends on XORG_LIB_XFONT
	bool
	prompt "Use freetype as rendering library"
	help
	  This will enable freetype 2.x library.

config XORG_LIB_XFONT_FONTCACHE
	depends on XORG_LIB_XFONT
	depends on XORG_LIB_XFONTCACHE
	bool
	default y
	prompt "Use fontcache"
	help
	 This will enable fontcache support

config XORG_LIB_XFONT_FONTSERVER
	depends on XORG_LIB_XFONT
	bool
	prompt "Support font server connections"
	help
	  This will support connections to font server.
	  FIXME: xorg server fails when font server connections are disabled.

config XORG_LIB_XFONT_TYPE1_FONTS
	depends on XORG_LIB_XFONT
	bool
	prompt "Support type1 fonts"
	help
	  Enable Type 1 fonts in this X server.

config XORG_LIB_XFONT_CID_FONTS
	depends on XORG_LIB_XFONT
	bool
	prompt "Support CID fonts"
	help
	  Enable CID fonts in this X server.

config XORG_LIB_XFONT_SPEEDO_FONTS
	depends on XORG_LIB_XFONT
	bool
	prompt "Support Speedo fonts"
	help
	  Enable Speedo fonts in this X server.

config XORG_LIB_XFONT_PCF_FONTS
	depends on XORG_LIB_XFONT
	bool
	prompt "Support pcf format fonts"
	help
	  Enable pcf format fonts in this X server.

config XORG_LIB_XFONT_BDF_FONTS
	depends on XORG_LIB_XFONT
	bool
	default y
	prompt "Support bdf format fonts"
	help
	  Enable bdf format fonts in this X server.

config XORG_LIB_XFONT_SNF_FONTS
	depends on XORG_LIB_XFONT
	bool
	prompt "Support snf format fonts"
	help
	  Enable snf format fonts in this X server.

config XORG_LIB_XFONT_BUILTIN_FONTS
	depends on XORG_LIB_XFONT
	bool
	prompt "Support builtin fonts"
	default y
	help
	  Builtins (gzipped pcf format in .text segment). Enable this font type
	  if you don't have any fonts on you target nor a font server in your
	  network.
	  FIXME: xorg server fails to build when this entry is disabled.