mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-24 19:27:44 +01:00
gnu: heimdal: Fix linking error when cross-compiling.
* gnu/packages/kerberos.scm (heimdal)[arguments]<#:configure-flags>: Set ac_cv_func_getpwnam_r_posix=yes when cross-compiling.
This commit is contained in:
parent
de8ea8e827
commit
f706689a8d
1 changed files with 7 additions and 2 deletions
|
@ -207,7 +207,7 @@ (define-public heimdal
|
|||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags (list
|
||||
`(#:configure-flags (list
|
||||
;; Avoid 7 MiB of .a files.
|
||||
"--disable-static"
|
||||
|
||||
|
@ -222,8 +222,13 @@ (define-public heimdal
|
|||
;; Do not build sqlite.
|
||||
(string-append
|
||||
"--with-sqlite3="
|
||||
(assoc-ref %build-inputs "sqlite")))
|
||||
(assoc-ref %build-inputs "sqlite"))
|
||||
|
||||
;; The configure script is too pessimistic.
|
||||
;; Setting this also resolves a linking error.
|
||||
,@(if (%current-target-system)
|
||||
'("ac_cv_func_getpwnam_r_posix=yes")
|
||||
'()))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-before 'configure 'pre-configure
|
||||
(lambda _
|
||||
|
|
Loading…
Reference in a new issue