Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 09EA584D14 for ; Fri, 9 Jun 2023 23:51:41 +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 rQZl97ret8tn for ; Fri, 9 Jun 2023 23:51:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5E0EE84CCF for ; Fri, 9 Jun 2023 23:51:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 51D47FA89; Fri, 9 Jun 2023 23:51:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1686354700237590" MIME-Version: 1.0 Date: Fri, 9 Jun 2023 23:51:40 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/comms/conserver To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20230609235140.51D47FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1686354700237590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Fri Jun 9 23:51:40 UTC 2023 Modified Files: pkgsrc/comms/conserver: Makefile Log Message: comms/conserver: Make this cross-compile on NetBSD. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/comms/conserver/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1686354700237590 Content-Disposition: inline Content-Length: 736 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/comms/conserver/Makefile diff -u pkgsrc/comms/conserver/Makefile:1.33 pkgsrc/comms/conserver/Makefile:1.34 --- pkgsrc/comms/conserver/Makefile:1.33 Tue Jun 15 12:35:11 2021 +++ pkgsrc/comms/conserver/Makefile Fri Jun 9 23:51:40 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2021/06/15 12:35:11 nia Exp $ +# $NetBSD: Makefile,v 1.34 2023/06/09 23:51:40 riastradh Exp $ # DISTNAME= conserver-7.2.7 @@ -22,6 +22,10 @@ CONFIGURE_ARGS+= --with-logfile=${VARBAS .include "../../mk/bsd.prefs.mk" +.if ${USE_CROSS_COMPILE:tl} == "yes" +CONFIGURE_ENV.NetBSD+= ac_cv_func_setpgrp_void=no +.endif + .for arch in ${LP64PLATFORMS} . if !empty(MACHINE_PLATFORM:M${arch}) CONFIGURE_ARGS+= --with-64bit --_----------=_1686354700237590--