guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/06: gnu: openssl: Explicitly declare the _FILE_OFFSET_BITS we want.


From: guix-commits
Subject: 04/06: gnu: openssl: Explicitly declare the _FILE_OFFSET_BITS we want.
Date: Mon, 28 Sep 2020 19:38:45 -0400 (EDT)

dannym pushed a commit to branch wip-file-offset-bits-64
in repository guix.

commit 5b886899330fdddf3798b03016a01fc973d768cc
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Tue Sep 29 01:34:02 2020 +0200

    gnu: openssl: Explicitly declare the _FILE_OFFSET_BITS we want.
    
    * gnu/packages/tls.scm 
(openssl)[arguments]<#:phases>[ensure-file-offset-bits-64]:
    Explicity declare the _FILE_OFFSET_BITS we want.
---
 gnu/packages/tls.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index d60eeea..b9f7fd2 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -354,6 +354,11 @@ required structures.")
                              "linux-aarch64")))
                    #t)))
              '())
+        (add-before 'configure 'ensure-file-offset-bits-64
+          ;; Note: lib/gl/sys/types.h has off_t, but only for Windows.
+          (lambda _
+            (setenv "CFLAGS" "-D_FILE_OFFSET_BITS=64")
+            #t))
         (replace 'configure
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]