summaryrefslogtreecommitdiffstats
path: root/rules/xorg-lib-X11.in
blob: 9f23f3636b4d6396f156a9f62a00566fc7f7b973 (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
98
99
100
101
102
103
104
105
106
107
108
menuconfig XORG_LIB_X11
	bool
	prompt "libX11                "
# always required:
	select XORG_PROTO_X
	select XORG_LIB_XAU
	select XORG_PROTO_BIGREQS	# FIXME Why always?
	select XORG_PROTO_XEXT
	select XORG_LIB_XTRANS
	select XORG_PROTO_XCMISC
	select XORG_LIB_XDMCP	# FIXME Why always?
	select XORG_PROTO_KB
	select XORG_PROTO_INPUT
# required on demand
	select XORG_PROTO_XF86BIGFONT if XORG_LIB_X11_XF86BIGFONT
	help
	  This is the main X library

config XORG_LIB_X11_XF86BIGFONT
	depends on XORG_LIB_X11
	bool
	prompt "XF86BigFont extension support"
	default n
	help
	  FIXME

config XORG_LIB_X11_i18n
	depends on XORG_LIB_X11
	bool
	prompt "Loadable i18n module support"
	default n
	help
	  FIXME

config XORG_LIB_X11_CURSOR
	depends on XORG_LIB_X11
	bool
	prompt "loadable xcursor library support"
	default n
	help
	  FIXME

config XORG_LIB_X11_XKB
	depends on XORG_LIB_X11
	bool
	prompt "XKB Support"
	default n
	help
	  This adds the keyboard extension support to the base library. Various
	  applications handling keyboards need it.

config XORG_LIB_X11_INSTALL_LOCALE
	depends on XORG_LIB_X11
	depends on LOCALES
	bool
	prompt "XLOCALE Support"
	default y
	help
	  add XLOCALE Support, you will need this one if you have localized X
	  applications.

config XORG_LIB_X11_INSTALL_LOCALE_8859_1
	depends on XORG_LIB_X11_INSTALL_LOCALE
	depends on LOCALES_EN_US || LOCALES_EN_GB || LOCALES_DE_DE
	bool
	prompt "  install iso8859-1 locale packet"
	default y
	help
	  install iso8859-1(latin alphabet No.1) locale files.

config XORG_LIB_X11_INSTALL_LOCALE_8859_15
	depends on XORG_LIB_X11_INSTALL_LOCALE
	depends on LOCALES_EN_GB_EURO || LOCALES_DE_DE_EURO
	bool
	prompt "  install iso8859-15 locale packet"
	default y
	help
	  install iso8859-15(latin alphabet No.9) locale files.

menu "  Chinese locale packets"
	depends on XORG_LIB_X11_INSTALL_LOCALE

config XORG_LIB_X11_INSTALL_LOCALE_CHN_MAIN
	depends on XORG_LIB_X11_INSTALL_LOCALE
	depends on LOCALES_ZH_CN
	bool
	prompt "  install chinese locales packet (mainland)"
	help
	  install chinese locale files, including gb2303, gb18030 and utf8

config XORG_LIB_X11_INSTALL_LOCALE_CHN_HK
	depends on XORG_LIB_X11_INSTALL_LOCALE
	depends on LOCALES_ZH_HK
	bool
	prompt "  install chinese locale packet (Hongkong)"
	help
	  install chinese locale files, including big5 and big5hkcks as used
	  in Honkong.

config XORG_LIB_X11_INSTALL_LOCALE_CHN_TW
	depends on XORG_LIB_X11_INSTALL_LOCALE
	depends on LOCALES_ZH_TW
	bool
	prompt "  install chinese locale packet (Taiwan)"
	help
	  install chinese locale files, including big5 and big5hkcks as used
	  in Taiwan.
endmenu