gnu: prixovy: Enable HTTPS inspection.
* gnu/packages/tor.scm (privoxy)[arguments]: Add "--with-openssl" to the #:configure-flags. [inputs]: Add openssl.master
parent
79613ec8fc
commit
70feedbbdb
|
@ -171,7 +171,8 @@ rejects UDP traffic from the application you're using.")
|
||||||
#:configure-flags (list (string-append "--sysconfdir="
|
#:configure-flags (list (string-append "--sysconfdir="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/etc/privoxy")
|
"/etc/privoxy")
|
||||||
"--localstatedir=/var")
|
"--localstatedir=/var"
|
||||||
|
"--with-openssl")
|
||||||
#:tests? #f ; no test suite
|
#:tests? #f ; no test suite
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -193,8 +194,9 @@ rejects UDP traffic from the application you're using.")
|
||||||
(("^logfile") "#logfile")))
|
(("^logfile") "#logfile")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("w3m" ,w3m)
|
`(("openssl" ,openssl)
|
||||||
("pcre" ,pcre)
|
("pcre" ,pcre)
|
||||||
|
("w3m" ,w3m)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
|
|
Reference in New Issue