summaryrefslogtreecommitdiffstats
path: root/rules/xorg-lib-X11.in
blob: 01ef02fde36918e46be81386e2ae9c470f400256 (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
109
110
111
112
113
114
115
116
## SECTION=multimedia_xorg_lib

menuconfig XORG_LIB_X11
	tristate
	prompt "libX11                        "
	select LIBC_DL
	select XORG_PROTO_X
	select XORG_PROTO_XEXT
	select XORG_LIB_XDMCP		if !XORG_LIB_X11_XCB_LOW_LEVEL
	select XORG_LIB_XAU		if !XORG_LIB_X11_XCB_LOW_LEVEL
	select XORG_PROTO_XCMISC	if !XORG_LIB_X11_XCB_LOW_LEVEL
	select XORG_PROTO_BIGREQS	if !XORG_LIB_X11_XCB_LOW_LEVEL
	select LIBXCB
	select XORG_LIB_XTRANS
	select XORG_PROTO_XF86BIGFONT	if XORG_LIB_X11_XF86BIGFONT
	select XORG_PROTO_INPUT		if XORG_LIB_X11_XKB
	select XORG_PROTO_KB		if XORG_LIB_X11_XKB
	select LIBC_PTHREAD
	help
	  This is the main X library

if XORG_LIB_X11

config XORG_LIB_X11_XCB_LOW_LEVEL
	bool
	default y
	prompt "use XCB for low level protocol implementation"
	help
	  FIXME

config XORG_LIB_X11_XF86BIGFONT
	bool
	prompt "XF86BigFont extension support"
	help
	  FIXME

config XORG_LIB_X11_I18N
	bool
	prompt "Loadable i18n module support"
	help
	  FIXME

config XORG_LIB_X11_CURSOR
	bool
	prompt "loadable xcursor library support"
	help
	  FIXME

config XORG_LIB_X11_XKB
	bool
	default y
	prompt "XKB Support"
	help
	  This adds the keyboard extension support to the base library. Various
	  applications handling keyboards need it.
	  Note: this feature is marked as experimental if disabled!

config XORG_LIB_X11_INSTALL_LOCALE
	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

endif