Received: by mail.netbsd.org (Postfix, from userid 605) id 7A41884E6F; Tue, 24 May 2022 13:01:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B16DD84E5C for ; Tue, 24 May 2022 13:01:02 +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 ElLrnI9BNJu3 for ; Tue, 24 May 2022 13:01:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1369F84D9B for ; Tue, 24 May 2022 13:01:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 33D60FAEB; Tue, 24 May 2022 13:01:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1653397311250410" MIME-Version: 1.0 Date: Tue, 24 May 2022 13:01:51 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/misc/dialog To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220524130151.33D60FAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1653397311250410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue May 24 13:01:51 UTC 2022 Modified Files: pkgsrc/misc/dialog: Makefile Log Message: dialog: Use OPSYS_VERSION To generate a diff of this commit: cvs rdiff -u -r1.90 -r1.91 pkgsrc/misc/dialog/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1653397311250410 Content-Disposition: inline Content-Length: 794 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/dialog/Makefile diff -u pkgsrc/misc/dialog/Makefile:1.90 pkgsrc/misc/dialog/Makefile:1.91 --- pkgsrc/misc/dialog/Makefile:1.90 Fri Apr 15 16:36:04 2022 +++ pkgsrc/misc/dialog/Makefile Tue May 24 13:01:51 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.90 2022/04/15 16:36:04 fcambus Exp $ +# $NetBSD: Makefile,v 1.91 2022/05/24 13:01:51 nia Exp $ DISTNAME= dialog-1.3-20220414 PKGNAME= ${DISTNAME:C/-2/.2/} @@ -25,8 +25,7 @@ SUBST_SED.rpath= -e 's;-L\(.\);${_COMPIL SUBST_STAGE.rpath= pre-configure .include "../../mk/bsd.prefs.mk" -# curses from NetBSD 5 and earlier will coredump when displaying shadows -.if !empty(MACHINE_PLATFORM:MNetBSD-[0-5].*) +.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 060000 CONFIGURE_ARGS+= --disable-widec .endif --_----------=_1653397311250410--