Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id BB3EB7A170 for ; Wed, 4 Jan 2017 10:34:11 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 640BB85685; Wed, 4 Jan 2017 10:34:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E8F428567B for ; Wed, 4 Jan 2017 10:34:10 +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 TaBYInGfvjy1 for ; Wed, 4 Jan 2017 10:34:10 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7C77C84CBD for ; Wed, 4 Jan 2017 10:34:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 734E6FBA6; Wed, 4 Jan 2017 10:34:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483526050138620" MIME-Version: 1.0 Date: Wed, 4 Jan 2017 10:34:10 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/audio/nas To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170104103410.734E6FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1483526050138620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Jan 4 10:34:10 UTC 2017 Modified Files: pkgsrc/audio/nas: distinfo Added Files: pkgsrc/audio/nas/patches: patch-server_dia_lex.l Log Message: Ensure the local yywrap is used. Fixes build with newer flex. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/audio/nas/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/audio/nas/patches/patch-server_dia_lex.l Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483526050138620 Content-Disposition: inline Content-Length: 1490 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/nas/distinfo diff -u pkgsrc/audio/nas/distinfo:1.34 pkgsrc/audio/nas/distinfo:1.35 --- pkgsrc/audio/nas/distinfo:1.34 Tue Nov 3 01:12:43 2015 +++ pkgsrc/audio/nas/distinfo Wed Jan 4 10:34:10 2017 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.34 2015/11/03 01:12:43 agc Exp $ +$NetBSD: distinfo,v 1.35 2017/01/04 10:34:10 jperkin Exp $ SHA1 (nas-1.9.4.src.tar.gz) = a251c5b771f9d7fa98f65e5830a039b28f8a6995 RMD160 (nas-1.9.4.src.tar.gz) = 9622263075b1d24fb27dd06c9edecc91ac3157ae @@ -12,3 +12,4 @@ SHA1 (patch-ae) = 2e88c42f849ec2e3eb942f SHA1 (patch-af) = 9e387f88504d6ef18ad4210af24702de61efbf1a SHA1 (patch-ag) = c43bab8c87efa5c770dd084d67ffa9897350810f SHA1 (patch-server_dia_auservertype.h) = 8ee2d064797837a1fcfd6c1389e09879f015cc9b +SHA1 (patch-server_dia_lex.l) = dbfbf4adcad53034d633d59959d08a7464774b85 Added files: Index: pkgsrc/audio/nas/patches/patch-server_dia_lex.l diff -u /dev/null pkgsrc/audio/nas/patches/patch-server_dia_lex.l:1.1 --- /dev/null Wed Jan 4 10:34:10 2017 +++ pkgsrc/audio/nas/patches/patch-server_dia_lex.l Wed Jan 4 10:34:10 2017 @@ -0,0 +1,14 @@ +$NetBSD: patch-server_dia_lex.l,v 1.1 2017/01/04 10:34:10 jperkin Exp $ + +Ensure the local yywrap is used. + +--- server/dia/lex.l.orig 2013-04-27 00:41:06.000000000 +0000 ++++ server/dia/lex.l +@@ -5,6 +5,7 @@ + #include "auservertype.h" + #include "gram.h" + #include "nasconf.h" ++#undef yywrap + + int Lineno = 1; /* current line number of the scanner */ + --_----------=_1483526050138620--