blob: 926bdf98d38bf177dfd01a9add3f7f1ccf53206f (
plain) (
blame)
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
|
depends smgl-fhs &&
optional_depends pcre2 \
"--with-libpcre2" \
"--without-libpcre2" \
"for PCRE2 regular expressions" &&
optional_depends pcre \
"--with-libpcre" \
"--without-libpcre" \
"for Perl-style regular expressions" &&
optional_depends libidn2 \
"--with-libidn2" \
"--without-libidn2" \
"for IDN2 support" &&
optional_depends libidn \
"--with-libidn" \
"--without-libidn" \
"for IDN support" &&
optional_depends "GETTEXT" \
"--enable-nls" \
"--disable-nls" \
"for i18n support" &&
optional_depends libpsl \
'--with-libpsl' \
'--without-libpsl' \
'for PSL cookie checking' &&
optional_depends zlib \
'--with-zlib' \
'--without-zlib' \
'gzip compression support' &&
optional_depends xz-utils \
'--with-lzma' \
'--without-lzma' \
'LZMA compression support' &&
optional_depends bzip2 \
'--with-bzip2' \
'--without-bzip2' \
'bzip2 compression support' &&
optional_depends brotli \
'--with-brotlidec' \
'--without-brotlidec' \
'Brotli compression support' &&
optional_depends zstd \
'--with-zstd' \
'--without-zstd' \
'Zstandard compression support' &&
optional_depends gpgme \
'--with-gpgme' \
'--without-gpgme' \
'GPGME support' &&
optional_depends nghttp2 \
'--without-libnghttp2' \
'--without-libnghttp2' \
'HTTP2 support' &&
optional_depends doxygen \
'--enable-doc' \
'--disable-doc' \
'build docs' &&
case $WGET_SSL in
none)
;;
gnutls) depends gnutls "--with-ssl=gnutls"
;;
SSL)
depends SSL "--with-ssl=openssl" &&
optional_depends ca-certificates '' '' 'provides security certificates'
;;
esac
|