diff options
author | Luis Ressel <aranea@aixah.de> | 2019-03-01 02:08:14 +0100 |
---|---|---|
committer | Luis Ressel <aranea@aixah.de> | 2019-03-01 02:13:24 +0100 |
commit | 52d4e69515ced1a4471fbad1103bf19fcb136611 (patch) | |
tree | 41f1cca9607525055b5979d9b7b7872baa25aa4e /user/qemu/APKBUILD | |
parent | 54003d7ae7f86ebba107ddad7ea6be0fdcaa6259 (diff) | |
download | packages-52d4e69515ced1a4471fbad1103bf19fcb136611.tar.gz packages-52d4e69515ced1a4471fbad1103bf19fcb136611.tar.bz2 packages-52d4e69515ced1a4471fbad1103bf19fcb136611.tar.xz packages-52d4e69515ced1a4471fbad1103bf19fcb136611.zip |
user/qemu: Explicitly disable gcrypt support
It's currently an automagic dep, and linking against both nettle and
gcrypt may be problematic.
Diffstat (limited to 'user/qemu/APKBUILD')
-rw-r--r-- | user/qemu/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/user/qemu/APKBUILD b/user/qemu/APKBUILD index f64964b3c..db9ce1e59 100644 --- a/user/qemu/APKBUILD +++ b/user/qemu/APKBUILD @@ -5,7 +5,7 @@ # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=qemu pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Machine emulator and virtualisation software" url="https://www.qemu.org/" arch="all" @@ -209,6 +209,7 @@ _compile_common() { --disable-werror \ --disable-sdl \ --disable-xen \ + --disable-gcrypt \ --cc="${CC:-gcc}" \ --python="/usr/bin/python3" \ "$@" |