Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2691184EE2 for ; Sat, 10 Jun 2023 01:57:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id uRJ00SkfS4V0 for ; Sat, 10 Jun 2023 01:57:48 +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 7E7A884D14 for ; Sat, 10 Jun 2023 01:57:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EC645FA89; Sat, 10 Jun 2023 01:57:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1686362267191350" MIME-Version: 1.0 Date: Sat, 10 Jun 2023 01:57:47 +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: <20230610015747.EC645FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1686362267191350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Sat Jun 10 01:57:47 UTC 2023 Modified Files: pkgsrc/comms/conserver: Makefile Log Message: comms/conserver: USE_CROSS_COMPILE may be undefined. Fixes mistake in previous. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/comms/conserver/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1686362267191350 Content-Disposition: inline Content-Length: 678 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.34 pkgsrc/comms/conserver/Makefile:1.35 --- pkgsrc/comms/conserver/Makefile:1.34 Fri Jun 9 23:51:40 2023 +++ pkgsrc/comms/conserver/Makefile Sat Jun 10 01:57:47 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2023/06/09 23:51:40 riastradh Exp $ +# $NetBSD: Makefile,v 1.35 2023/06/10 01:57:47 riastradh Exp $ # DISTNAME= conserver-7.2.7 @@ -22,7 +22,7 @@ CONFIGURE_ARGS+= --with-logfile=${VARBAS .include "../../mk/bsd.prefs.mk" -.if ${USE_CROSS_COMPILE:tl} == "yes" +.if ${USE_CROSS_COMPILE:U:tl} == "yes" CONFIGURE_ENV.NetBSD+= ac_cv_func_setpgrp_void=no .endif --_----------=_1686362267191350--