[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/32: gnu: s2n: Link to aws-lc as libcrypto dependency.
From: |
guix-commits |
Subject: |
15/32: gnu: s2n: Link to aws-lc as libcrypto dependency. |
Date: |
Mon, 2 May 2022 09:16:10 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit af856afb6cb91f0ea717d333bc622c9b5a1af1be
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Fri Apr 22 17:28:17 2022 +0000
gnu: s2n: Link to aws-lc as libcrypto dependency.
* gnu/packages/tls.scm (s2n):
[arguments]: Fix for openssl as replacement input for aws-lc.
[propagated-inputs]: Add aws-lc and remove openssl.
[supported-systems]: Only support x86_64-linux.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/tls.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 54921fdc86..84ed0caa5d 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -1130,7 +1130,7 @@ derived from Mozilla's collection.")
(define-public s2n
(package
(name "s2n")
- ; Update only when updating aws-crt-cpp.
+ ;; Update only when updating aws-crt-cpp.
(version "1.3.10")
(source (origin
(method git-fetch)
@@ -1144,10 +1144,13 @@ derived from Mozilla's collection.")
(build-system cmake-build-system)
(arguments
'(#:configure-flags
- '("-DBUILD_SHARED_LIBS=ON")))
- (propagated-inputs
- `(("openssl" ,openssl)
- ("openssl:static" ,openssl "static")))
+ '("-DBUILD_SHARED_LIBS=ON"
+ ;; Remove in next update; see https://github.com/aws/s2n-tls/pull/3108
+ ;; Building with 'Werror' results in compilation error (even building
+ ;; with gcc) when replacing the aws-lc input with openssl.
+ "-DUNSAFE_TREAT_WARNINGS_AS_ERRORS=OFF")))
+ (propagated-inputs (list aws-lc))
+ (supported-systems '("x86_64-linux"))
(synopsis "SSL/TLS implementation in C99")
(description
"This library provides a C99 implementation of SSL/TLS. It is designed to
- 10/32: gnu: aws-c-auth: Fix comment formatting., (continued)
- 10/32: gnu: aws-c-auth: Fix comment formatting., guix-commits, 2022/05/02
- 02/32: gnu: aws-c-common: Only support i686 and x86_64., guix-commits, 2022/05/02
- 06/32: gnu: aws-c-cal: Fix comment formatting., guix-commits, 2022/05/02
- 12/32: gnu: aws-c-mqtt: Fix comment formatting., guix-commits, 2022/05/02
- 13/32: gnu: aws-crt-cpp: Fix comment formatting., guix-commits, 2022/05/02
- 04/32: gnu: aws-c-event-stream: Fix comment formatting., guix-commits, 2022/05/02
- 03/32: gnu: aws-checksums: Fix comment formatting., guix-commits, 2022/05/02
- 16/32: gnu: aws-sdk-cpp: Remove openssl input., guix-commits, 2022/05/02
- 23/32: gnu: spdlog: Update to 1.10.0., guix-commits, 2022/05/02
- 30/32: gnu: Add python-parsel., guix-commits, 2022/05/02
- 15/32: gnu: s2n: Link to aws-lc as libcrypto dependency.,
guix-commits <=
- 19/32: gnu: apl: Update to 1.8-r1550., guix-commits, 2022/05/02
- 24/32: gnu: bear: Update to 3.0.19., guix-commits, 2022/05/02
- 31/32: gnu: Add python-itemloaders., guix-commits, 2022/05/02
- 09/32: gnu: aws-c-compression: Fix comment formatting., guix-commits, 2022/05/02
- 25/32: gnu: Add python-sybil., guix-commits, 2022/05/02
- 11/32: gnu: aws-c-s3: Fix comment formatting., guix-commits, 2022/05/02
- 17/32: gnu: ugrep: Update to 3.7.9., guix-commits, 2022/05/02
- 20/32: gnu: apl: Remove input labels., guix-commits, 2022/05/02
- 22/32: gnu: fmt: Update to 8.1.1., guix-commits, 2022/05/02
- 05/32: gnu: aws-c-io: Fix comment formatting., guix-commits, 2022/05/02