summaryrefslogtreecommitdiffstats
path: root/rules/glib.in
blob: 3893d2c96b6a48606ad69323f31bac68cf99c919 (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
## SECTION=multimedia_gtk

menuconfig GLIB
	tristate
	prompt "glib                          "
	select LIBC_DL
	select LIBC_RT
	select LIBC_RESOLV
	select LIBC_PTHREAD
	select GCCLIBS_GCC_S
	select GETTEXT		if GLIB_GETTEXT_GETTEXT
	select GETTEXT_DUMMY	if GLIB_GETTEXT_DUMMY
	select HOST_GLIB
	select HOST_GTK_DOC
	select ICONV
	select ZLIB
	help
	  GLib is a library containing many useful C routines for things
	  such as trees, hashes, lists, and strings. It is a useful
	  general-purpose C library used by projects such as GTK+, GIMP,
	  and GNOME.

if GLIB

config GLIB_EXPERIMENTAL
	bool
	prompt "experimental version"

choice

	prompt "gettext variant"
	default GLIB_GETTEXT_NONE

	config GLIB_GETTEXT_NONE
		bool
		prompt "not needed    "

	config GLIB_GETTEXT_GETTEXT
		bool
		prompt "gnu (gettext) "

	config GLIB_GETTEXT_DUMMY
		bool
		prompt "dummy         "

endchoice

endif