summaryrefslogtreecommitdiffstats
path: root/rules/xorg-lib-Xfont2.in
blob: 19e40fe8a0a6f2092479bf89a2167ef5d3c4c185 (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
## SECTION=multimedia_xorg_lib

# These are always required:
# Requires: xproto fontsproto
# Requires.private: fontenc
# Libs.private: -lz -lm

config XORG_LIB_XFONT2
	tristate
	select LIBC_M
	select XORGPROTO
	select XORG_LIB_FONTENC
	select XORG_LIB_XTRANS
	select ZLIB			if XORG_LIB_XFONT2_BUILTIN_FONTS
	select FREETYPE			if XORG_LIB_XFONT2_FREETYPE
	# disabling builtins is currently broken
	select XORG_LIB_XFONT2_BUILTIN_FONTS
	prompt "xorg-lib-xfont2               "
	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_XFONT2_FREETYPE
	depends on XORG_LIB_XFONT2
	select FREETYPE
	bool
	prompt "Use freetype as rendering library"
	help
	  This will enable freetype 2.x library.

config XORG_LIB_XFONT2_FONTSERVER
	depends on XORG_LIB_XFONT2
	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_XFONT2_PCF_FONTS
	depends on XORG_LIB_XFONT2
	bool
	prompt "Support pcf format fonts"
	help
	  Enable pcf format fonts in this X server.

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

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

config XORG_LIB_XFONT2_BUILTIN_FONTS
	depends on XORG_LIB_XFONT2
	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.