dannym pushed a commit to branch wip-file-offset-bits-64 in repository guix.
commit 5b886899330fdddf3798b03016a01fc973d768cc Author: Danny Milosavljevic <[email protected]> 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"))
