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

menuconfig GLIB
	tristate
	prompt "glib                          "
	select LIBICONV		if GLIB__LIBICONV_GNU
	select GETTEXT		if GLIB__GETTEXT_GETTEXT
	select GETTEXT_DUMMY	if GLIB__GETTEXT_DUMMY
	select HOST_GLIB
	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

choice
	prompt "version"
	default GLIB__VERSION_2_19

	config GLIB__VERSION_2_19
		bool
		prompt "2.19 (devel)"

	config GLIB__VERSION_2_18
		bool
		prompt "2.18 (stable)"

endchoice

choice
	prompt "iconv variant  "
	default GLIB__LIBICONV_CLIB

	config GLIB__LIBICONV_CLIB
		bool
		prompt "c library     "

	config GLIB__LIBICONV_GNU
		bool
		prompt "gnu (libiconv)"

	config GLIB__LIBICONV_NATIVE
		bool
		prompt "native (mingw)"

endchoice

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