mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: squid: Enable TLS features.
Despite openssl being listed as an input, it was not actually enabled by default. Fixing that using a configure flag. * gnu/packages/networking.scm (squid)[arguments]: Add "--with-openssl" to #:configure-flags. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
2a51fb1d29
commit
37ed844711
1 changed files with 1 additions and 1 deletions
|
@ -2010,7 +2010,7 @@ (define-public squid
|
|||
'(#:configure-flags
|
||||
;; disable -march=native in build for reproducibility; see
|
||||
;; https://wiki.squid-cache.org/KnowledgeBase/IllegalInstructionError
|
||||
(list "--disable-arch-native")
|
||||
(list "--disable-arch-native" "--with-openssl")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'build 'fix-true-path
|
||||
|
|
Loading…
Reference in a new issue