summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/qemu-meson-compat.patch
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2021-10-12 19:23:30 +0200
committerMarius Bakke <marius@gnu.org>2021-10-12 21:49:44 +0200
commit0b5e128750ed40d4348f2eb49d328b81dba9181a (patch)
tree0c6ee081e74d25155c1bb674715384a712dc2b7e /gnu/packages/patches/qemu-meson-compat.patch
parent89ea3ab220bfdefcc1ab4588e7a93913ce4595d5 (diff)
downloadguix-patches-0b5e128750ed40d4348f2eb49d328b81dba9181a.tar
guix-patches-0b5e128750ed40d4348f2eb49d328b81dba9181a.tar.gz
gnu: QEMU: Update to 6.1.0.
* gnu/packages/virtualization.scm (qemu): Update to 6.1.0. [source](patches): Remove obsolete patch. [arguments]: Adjust substitutions for upstream changes. [native-inputs]: Add PYTHON-SPHINX-RTD-THEME. * gnu/packages/patches/qemu-meson-compat.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
Diffstat (limited to 'gnu/packages/patches/qemu-meson-compat.patch')
-rw-r--r--gnu/packages/patches/qemu-meson-compat.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/gnu/packages/patches/qemu-meson-compat.patch b/gnu/packages/patches/qemu-meson-compat.patch
deleted file mode 100644
index e6968c57dc..0000000000
--- a/gnu/packages/patches/qemu-meson-compat.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Fix a build failure that occurs with newer versions of Meson when
-gdbus-codegen is unavailable.
-
-Taken from upstream:
-https://gitlab.com/qemu-project/qemu/-/commit/5ecfb76ccc056eb6127e44268e475827ae73b9e0
-
-diff --git a/configure b/configure
---- a/configure
-+++ b/configure
-@@ -3341,7 +3341,7 @@ if ! test "$gio" = "no"; then
- gio_cflags=$($pkg_config --cflags gio-2.0)
- gio_libs=$($pkg_config --libs gio-2.0)
- gdbus_codegen=$($pkg_config --variable=gdbus_codegen gio-2.0)
-- if [ ! -x "$gdbus_codegen" ]; then
-+ if ! has "$gdbus_codegen"; then
- gdbus_codegen=
- fi
- # Check that the libraries actually work -- Ubuntu 18.04 ships
-@@ -5704,6 +5704,8 @@ if test "$gio" = "yes" ; then
- echo "CONFIG_GIO=y" >> $config_host_mak
- echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak
- echo "GIO_LIBS=$gio_libs" >> $config_host_mak
-+fi
-+if test "$gdbus_codegen" != "" ; then
- echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak
- fi
- echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak