mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: lagrange: Correctly link with libunistring.
* gnu/packages/web-browsers.scm (lagrange)[arguments]: Adjust 'configure-flags to set the location of libunistring. Change-Id: I62b9ca0a7d11b51e7699833d645fec8cbc428179
This commit is contained in:
parent
20089e2449
commit
246ac968a2
1 changed files with 7 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
||||
;;; Copyright © 2014, 2019 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015, 2016, 2019, 2021-2023 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2015, 2016, 2019, 2021-2023, 2025 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net>
|
||||
;;; Copyright © 2017, 2024 Eric Bavier <bavier@posteo.net>
|
||||
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
|
@ -750,8 +750,12 @@ (define-public lagrange
|
|||
(delete-file-recursively "lib/sealcurses")))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #false ;no tests
|
||||
#:configure-flags (list "-DTFDN_ENABLE_SSE41=OFF")))
|
||||
(list
|
||||
#:tests? #false ;no tests
|
||||
#:configure-flags
|
||||
#~(list "-DTFDN_ENABLE_SSE41=OFF"
|
||||
(string-append "-DUNISTRING_DIR="
|
||||
#$(this-package-input "libunistring")))))
|
||||
(native-inputs
|
||||
(list pkg-config zip))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue