pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/emulators/qemu



Module Name:    pkgsrc
Committed By:   tnn
Date:           Tue Feb 14 00:35:56 UTC 2023

Modified Files:
        pkgsrc/emulators/qemu: Makefile options.mk

Log Message:
qemu: enable the virtio-9p device model on Darwin

Required for newer podman-machine. Bump.


To generate a diff of this commit:
cvs rdiff -u -r1.309 -r1.310 pkgsrc/emulators/qemu/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/emulators/qemu/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/emulators/qemu/Makefile
diff -u pkgsrc/emulators/qemu/Makefile:1.309 pkgsrc/emulators/qemu/Makefile:1.310
--- pkgsrc/emulators/qemu/Makefile:1.309        Sun Jan 29 21:16:02 2023
+++ pkgsrc/emulators/qemu/Makefile      Tue Feb 14 00:35:56 2023
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.309 2023/01/29 21:16:02 ryoon Exp $
+# $NetBSD: Makefile,v 1.310 2023/02/14 00:35:56 tnn Exp $
 
 DISTNAME=      qemu-7.2.0
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    emulators
 MASTER_SITES=  https://download.qemu.org/
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/emulators/qemu/options.mk
diff -u pkgsrc/emulators/qemu/options.mk:1.18 pkgsrc/emulators/qemu/options.mk:1.19
--- pkgsrc/emulators/qemu/options.mk:1.18       Tue Oct 25 18:42:57 2022
+++ pkgsrc/emulators/qemu/options.mk    Tue Feb 14 00:35:56 2023
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.18 2022/10/25 18:42:57 jperkin Exp $
+# $NetBSD: options.mk,v 1.19 2023/02/14 00:35:56 tnn Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.qemu
 PKG_SUPPORTED_OPTIONS= debug-info gtk3 iscsi jack sdl spice
@@ -80,9 +80,11 @@ CONFIGURE_ARGS+=     --disable-xkbcommon
 
 # NB to successfully build virtfs-proxy-helper, the upstream Linux
 # header/development libraries for libcap and libattr must be installed.
-.if !empty(PKG_OPTIONS:Mvirtfs-proxy-helper)
+.if ${OPSYS} == "Linux" && !empty(PKG_OPTIONS:Mvirtfs-proxy-helper)
 PLIST.virtfs-proxy-helper=     yes
 CONFIGURE_ARGS+=               --enable-virtfs
+.elif ${OPSYS} == "Darwin"
+CONFIGURE_ARGS+=               --enable-virtfs
 .else
 CONFIGURE_ARGS+=               --disable-virtfs
 .endif



Home | Main Index | Thread Index | Old Index