From 5335b1593429a64ce12fb8d4b423cc6959d02186 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Tue, 29 Sep 2020 12:45:35 +0200 Subject: gnu: rhash: Explicity declare the _FILE_OFFSET_BITS we want. * gnu/packages/crypto.scm (rhash)[arguments]<#:phases>[configure]: Explicity declare the _FILE_OFFSET_BITS we want. --- gnu/packages/crypto.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 028c140185..c4be604ff4 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -854,7 +854,9 @@ BLAKE.") ;; ./configure is not GNU autotools' and doesn't gracefully handle ;; unrecognized options, so we must call it manually. (lambda* (#:key configure-flags #:allow-other-keys) - (apply invoke "./configure" configure-flags))) + (apply invoke "./configure" + (string-append "--extra-cflags=" (getenv "CFLAGS")) + configure-flags))) (add-before 'check 'patch-/bin/sh (lambda _ (substitute* "Makefile" -- cgit 1.4.1