mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 13:36:36 +01:00
gnu: cyrus-sasl: Explicity declare the _FILE_OFFSET_BITS we want.
* gnu/packages/cyrus-sasl.scm (cyrus-sasl)[arguments]<#:phases>[ensure-file-offset-bits-64]: Explicity declare the _FILE_OFFSET_BITS we want.
This commit is contained in:
parent
911e33ead1
commit
0e8923831b
1 changed files with 5 additions and 0 deletions
|
@ -68,6 +68,11 @@ (define-public cyrus-sasl
|
|||
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'configure 'ensure-file-offset-bits-64
|
||||
(lambda _
|
||||
(setenv "CFLAGS" "-D_FILE_OFFSET_BITS=64")
|
||||
(setenv "CXXFLAGS" "-D_FILE_OFFSET_BITS=64")
|
||||
#t))
|
||||
(add-after 'unpack 'autogen
|
||||
(lambda _
|
||||
(invoke "autoreconf" "-vif"))))))
|
||||
|
|
Loading…
Reference in a new issue