summaryrefslogtreecommitdiffstats
path: root/rules/mc.in
blob: 88244d55174fba5ceb93fbc39012519314a0bb06 (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
## SECTION=applications
menuconfig MC
	tristate
	select GLIB
	select NCURSES if MC_USES_NCURSES
	select SLANG if MC_USES_SLANG
	select LIBC_NSL
	prompt "midnight commander            "
	help
	  midnight commander is a text oriented file manager

comment "build options   ---"
	depends on MC

choice
	prompt "Kind of MMI "
	default MC_USES_NO_PREFERENCE
	depends on MC

config MC_USES_NO_PREFERENCE
	bool "no preference"
	help
	  Build midnight commander without any external library preference

config MC_USES_NCURSES
	bool "Use ncurses  "
	help
	  Build midnight commander with ncurses

config MC_USES_SLANG
	bool "Use slang    "
	help
	  Build midnight commander with slang

endchoice