gnu: tk: Fix cross-compilation.
* gnu/packages/tcl.scm (tk)[arguments]: Add configure flags to fix cross-compilation.
This commit is contained in:
parent
2ce30a37ad
commit
ee4c8c899b
1 changed files with 10 additions and 3 deletions
|
@ -186,9 +186,16 @@ X11 GUIs.")
|
||||||
"/lib -lfontconfig")))
|
"/lib -lfontconfig")))
|
||||||
#t))))
|
#t))))
|
||||||
|
|
||||||
#:configure-flags (list (string-append "--with-tcl="
|
#:configure-flags
|
||||||
(assoc-ref %build-inputs "tcl")
|
(list (string-append "--with-tcl="
|
||||||
"/lib"))
|
(assoc-ref %build-inputs "tcl")
|
||||||
|
"/lib")
|
||||||
|
;; This is needed when cross-compiling, see:
|
||||||
|
;; https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=719247
|
||||||
|
,@(if (%current-target-system)
|
||||||
|
'("tcl_cv_strtod_buggy=1"
|
||||||
|
"ac_cv_func_strtod=yes")
|
||||||
|
'()))
|
||||||
|
|
||||||
;; The tests require a running X server, so we just skip them.
|
;; The tests require a running X server, so we just skip them.
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
|
|
Reference in a new issue