From owner-svn-ports-all@freebsd.org Wed Jun 26 17:27:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95F7415CDBE1; Wed, 26 Jun 2019 17:27:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 350B67767D; Wed, 26 Jun 2019 17:27:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E1F7D2D06; Wed, 26 Jun 2019 17:27:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5QHRGr1078611; Wed, 26 Jun 2019 17:27:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5QHRGa5078610; Wed, 26 Jun 2019 17:27:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906261727.x5QHRGa5078610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 26 Jun 2019 17:27:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505172 - head/cad/iverilog/files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/cad/iverilog/files X-SVN-Commit-Revision: 505172 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 350B67767D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jun 2019 17:27:20 -0000 Author: sunpoet Date: Wed Jun 26 17:27:16 2019 New Revision: 505172 URL: https://svnweb.freebsd.org/changeset/ports/505172 Log: Fix build with bison 3.4.1 PR: 238141 Added: head/cad/iverilog/files/ head/cad/iverilog/files/patch-bison (contents, props changed) Added: head/cad/iverilog/files/patch-bison ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/iverilog/files/patch-bison Wed Jun 26 17:27:16 2019 (r505172) @@ -0,0 +1,58 @@ +--- Makefile.in.orig 2017-08-24 15:22:49 UTC ++++ Makefile.in +@@ -255,6 +255,7 @@ parse.o: parse.cc + # Build this in two steps to avoid parallel build issues (see pr3462585) + parse.cc: $(srcdir)/parse.y + $(YACC) --verbose -t -p VL -d -o $@ $< ++ touch parse.hh + parse.h: parse.cc + mv parse.cc.h $@ 2>/dev/null || mv parse.hh $@ + +--- tgt-pcb/fp.y.orig 2017-08-24 15:22:49 UTC ++++ tgt-pcb/fp.y +@@ -1,5 +1,5 @@ + +-%pure-parser ++%define api.pure + %parse-param {const char*file_path} + + %{ +--- tgt-pcb/Makefile.in.orig 2017-08-24 15:22:49 UTC ++++ tgt-pcb/Makefile.in +@@ -89,6 +89,7 @@ fp_lex.cc: $(srcdir)/fp.lex + + fp.cc: $(srcdir)/fp.y + $(YACC) --verbose -t -p fp -d -o $@ $< ++ touch fp.hh + fp.h: fp.cc + mv fp.cc.h $@ 2>/dev/null || mv fp.hh $@ + +--- vhdlpp/Makefile.in.orig 2017-08-24 15:22:49 UTC ++++ vhdlpp/Makefile.in +@@ -118,6 +118,7 @@ lexor.cc: $(srcdir)/lexor.lex + # Build this in two steps to avoid parallel build issues (see pr3462585) + parse.cc: $(srcdir)/parse.y + $(YACC) --verbose -t -d -o $@ $< ++ touch parse.hh + parse.h: parse.cc + mv parse.cc.h $@ 2>/dev/null || mv parse.hh $@ + +--- vhdlpp/parse.y.orig 2017-08-24 15:22:49 UTC ++++ vhdlpp/parse.y +@@ -1,5 +1,5 @@ + +-%pure-parser ++%define api.pure + %lex-param { yyscan_t yyscanner } + %parse-param {yyscan_t yyscanner } + %parse-param {const char*file_path} +--- vvp/Makefile.in.orig 2017-08-24 15:22:49 UTC ++++ vvp/Makefile.in +@@ -166,6 +166,7 @@ tables.o: tables.cc + # Build this in two steps to avoid parallel build issues (see pr3462585) + parse.cc: $(srcdir)/parse.y + $(YACC) --verbose -t -d -o $@ $< ++ touch parse.hh + parse.h: parse.cc + mv parse.cc.h $@ 2>/dev/null || mv parse.hh $@ +