This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch hurd-team
in repository guix.
The following commit(s) were added to refs/heads/hurd-team by this push:
new 62285f2ca5 squash! gnu: openssl-3.0: Support the 64bit Hurd.
62285f2ca5 is described below
commit 62285f2ca510c3fe7df3ef2700e1eb27956b3df7
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Dec 1 20:14:11 2024 +0100
squash! gnu: openssl-3.0: Support the 64bit Hurd.
[arguments]: Also, in #:configure-flags use "hurd-x86_64" for the 64bit
Hurd.
Change-Id: I18ce5d2eb823eee51d1152ea3dc35e865f7894a6
---
gnu/packages/tls.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index fab88518ce..ddf17f7128 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -600,9 +600,11 @@ OpenSSL for TARGET."
patch-file)))))
#~())))
((#:configure-flags flags #~'())
- (if (system-hurd?)
- #~(append #$flags '("hurd-x86")) ;must not be used when
- ;cross-compiling!
+ (if (system-hurd?) ;must not be used when
+ #~(append #$flags ;cross-compiling!
+ #$(if (target-hurd64?)
+ #~'("hurd-x86_64")
+ #~'("hurd-x86")))
flags))))
(license license:asl2.0)))