Received: by mail.netbsd.org (Postfix, from userid 605) id 6D73C84DC8; Thu, 19 Dec 2019 21:15:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E8D1C84CE7 for ; Thu, 19 Dec 2019 21:15:39 +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 0-cbd-Fse4Dx for ; Thu, 19 Dec 2019 21:15:39 +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 4E9C384CD8 for ; Thu, 19 Dec 2019 21:15:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 464E8FA97; Thu, 19 Dec 2019 21:15:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15767901396230" MIME-Version: 1.0 Date: Thu, 19 Dec 2019 21:15:39 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/net/ns To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20191219211539.464E8FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15767901396230 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Thu Dec 19 21:15:39 UTC 2019 Modified Files: pkgsrc/net/ns: Makefile Log Message: ns: modern compilers fussy about unsigned char To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 pkgsrc/net/ns/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15767901396230 Content-Disposition: inline Content-Length: 850 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/ns/Makefile diff -u pkgsrc/net/ns/Makefile:1.50 pkgsrc/net/ns/Makefile:1.51 --- pkgsrc/net/ns/Makefile:1.50 Sun Nov 3 11:45:44 2019 +++ pkgsrc/net/ns/Makefile Thu Dec 19 21:15:39 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2019/11/03 11:45:44 rillig Exp $ +# $NetBSD: Makefile,v 1.51 2019/12/19 21:15:39 markd Exp $ DISTNAME= ns-src-2.35 PKGNAME= ns-2.35 @@ -28,6 +28,12 @@ CONFIGURE_ARGS+= --with-tclcl=${BUILDLIN CONFIGURE_ENV+= X11LIBDIR=${X11BASE}/lib${LIBABISUFFIX} CONFIGURE_ENV+= X11INCDIR=${X11BASE}/include +SUBST_CLASSES+= char +SUBST_STAGE.char= pre-configure +SUBST_MESSAGE.char= unsigned char needed for 8bit values +SUBST_FILES.char= bitmap/*.xbm +SUBST_SED.char= -e 's,char,u_char,' + MESSAGE_SUBST+= HOMEPAGE=${HOMEPAGE} INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/ns --_----------=_15767901396230--