Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2D42284F5B for ; Sat, 16 Sep 2023 13:20:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id HazyynDtAJXR for ; Sat, 16 Sep 2023 13:20:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 70EA384F20 for ; Sat, 16 Sep 2023 13:20:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 62ECEFBDB; Sat, 16 Sep 2023 13:20:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1694870451110890" MIME-Version: 1.0 Date: Sat, 16 Sep 2023 13:20:51 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/emulators/qemu To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230916132051.62ECEFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1694870451110890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sat Sep 16 13:20:51 UTC 2023 Modified Files: pkgsrc/emulators/qemu: Makefile Log Message: qemu: avoid meson's heuristic use of GCC "response files" [1] This should fix gettext linkage errors when building qemu with the gtk3 option enabled. [1] Response files pass compiler arguments to GCC in a text file when meson thinks the command line is too long. pkgsrc wrappers are not able to inspect and transform those which leads to difficult-to-debug problems. meson has a default command line threshold of 64k. Bump this to 256k which is the default value of kern.argmax on NetBSD. To generate a diff of this commit: cvs rdiff -u -r1.321 -r1.322 pkgsrc/emulators/qemu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1694870451110890 Content-Disposition: inline Content-Length: 723 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/qemu/Makefile diff -u pkgsrc/emulators/qemu/Makefile:1.321 pkgsrc/emulators/qemu/Makefile:1.322 --- pkgsrc/emulators/qemu/Makefile:1.321 Wed Aug 23 15:19:02 2023 +++ pkgsrc/emulators/qemu/Makefile Sat Sep 16 13:20:51 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.321 2023/08/23 15:19:02 adam Exp $ +# $NetBSD: Makefile,v 1.322 2023/09/16 13:20:51 tnn Exp $ DISTNAME= qemu-8.1.0 CATEGORIES= emulators @@ -49,6 +49,7 @@ CONFIGURE_ARGS+= --mandir=${PREFIX}/${PK CONFIGURE_ARGS+= --enable-curses CONFIGURE_ARGS+= --enable-docs CONFIGURE_ENV+= mansuffix=/${PKGMANDIR} +CONFIGURE_ENV+= MESON_RSP_THRESHOLD=262144 .if defined(PKGSRC_USE_SSP) # do not add flags to everything --_----------=_1694870451110890--