summaryrefslogtreecommitdiffstats
path: root/rules/links.in
blob: 4da83012ce182cfb795dd8e0b5488831ec76a7c9 (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
## SECTION=networking

menuconfig LINKS
	tristate
	prompt "links                         "
	select NCURSES
	select OPENSSL		if LINKS_SSL
	select GPM		if LINKS_GPM
	select LIBPNG		if LINKS_PNG
	select LIBJPEG		if LINKS_JPEG
	select XORG_LIB_XEXT	if LINKS_X
	select DIRECTFB		if LINKS_DIRECTFB
	select SDL		if LINKS_SDL
	select ZLIB		if LINKS_ZLIB
	select BZIP2		if LINKS_BZIP2
	help
	  links is a fast lightweight text and graphic web-browser

if LINKS

config LINKS_SSL
	bool
	prompt "support for SSL"

config LINKS_GPM
	bool
	prompt "support for GPM"

config LINKS_PNG
	bool
	prompt "support for png"

config LINKS_JPEG
	bool
	prompt "support for jpeg"

config LINKS_FBCON
	bool
	select LINKS_PNG
	select LINKS_JPEG
	select LINKS_GPM
	prompt "support for fbcon"

config LINKS_TIFF
	bool
	depends on BROKEN # no libtiff in ptxdist yet
	prompt "support for tiff"

config LINKS_X
	bool
	select LINKS_PNG
	prompt "support for X"

config LINKS_DIRECTFB
	bool
	select LINKS_PNG
	prompt "support for DirectFB"

config LINKS_SDL
	bool
	prompt "support for SDL"

config LINKS_ZLIB
	bool
	prompt "support for zlib"

config LINKS_BZIP2
	bool
	prompt "support for bzip2"
endif