mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: xrdp: Only build with nasm on necessary platforms.
* gnu/packages/rdesktop.scm (xrdp)[native-inputs]: Only include nasm on platforms which need it. Change-Id: I9f390af3c12752bc0c3696910170bc994b8a5fd6
This commit is contained in:
parent
9c3feb3773
commit
1fb40a5b92
1 changed files with 12 additions and 8 deletions
|
@ -195,14 +195,18 @@ (define-public xrdp
|
|||
pixman
|
||||
python
|
||||
python-libxml2))
|
||||
(native-inputs (list bison
|
||||
cmocka
|
||||
flex
|
||||
gettext-minimal
|
||||
intltool
|
||||
nasm
|
||||
pkg-config
|
||||
pixman))
|
||||
(native-inputs
|
||||
(append
|
||||
(list bison
|
||||
cmocka
|
||||
flex
|
||||
gettext-minimal
|
||||
intltool)
|
||||
(if (target-x86?)
|
||||
(list nasm)
|
||||
'())
|
||||
(list pkg-config
|
||||
pixman)))
|
||||
(arguments
|
||||
(list #:configure-flags #~(list "--enable-strict-locations=yes"
|
||||
"--enable-fuse=yes"
|
||||
|
|
Loading…
Reference in a new issue