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

menuconfig LINKS
	tristate
	prompt "links                         "
	select NCURSES
	select LIBC_M
	select LIBC_DL
	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
	select XZ		if LINKS_LZMA
	help
	  links is a fast lightweight text and graphic web-browser

if LINKS

config LINKS_SSL
	bool
	prompt "support for SSL"
	help
	  Include support for Secure Socket Layer (SSL) transfers

config LINKS_GPM
	bool
	prompt "support for GPM"
	help
	  Activate support for General Purpose Mouse (GPM) service

config LINKS_PNG
	bool
	prompt "support for png"
	help
	  Activate support for Portable Network Graphics (PNG) image format

config LINKS_JPEG
	bool
	prompt "support for jpeg"
	help
	  Activate support for Joint Photographic Experts Group (JPEG)
	  image format

config LINKS_FBCON
	bool
	select LINKS_PNG
	select LINKS_JPEG
	select LINKS_GPM
	prompt "support for fbcon"
	help
	  Activate support for Framebuffer Console mode

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"

config LINKS_LZMA
	bool
	prompt "support for lzma"
endif