From owner-svn-ports-all@freebsd.org Tue Jul 14 02:18:01 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D04D7351770; Tue, 14 Jul 2020 02:18:01 +0000 (UTC) (envelope-from jkim@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4B5PLd59kmz3d9n; Tue, 14 Jul 2020 02:18:01 +0000 (UTC) (envelope-from jkim@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 95E731EF93; Tue, 14 Jul 2020 02:18:01 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06E2I1lG016758; Tue, 14 Jul 2020 02:18:01 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06E2I1IT016757; Tue, 14 Jul 2020 02:18:01 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <202007140218.06E2I1IT016757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 14 Jul 2020 02:18:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r542179 - branches/2020Q3/mail/emil/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: branches/2020Q3/mail/emil/files X-SVN-Commit-Revision: 542179 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 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: Tue, 14 Jul 2020 02:18:01 -0000 Author: jkim Date: Tue Jul 14 02:18:01 2020 New Revision: 542179 URL: https://svnweb.freebsd.org/changeset/ports/542179 Log: MFH: r542174 Fix build with recent byacc on head after r363170`. PR: 247522 Approved by: ports-secteam (blanket, build fix) Modified: branches/2020Q3/mail/emil/files/patch-getoption.y Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/mail/emil/files/patch-getoption.y ============================================================================== --- branches/2020Q3/mail/emil/files/patch-getoption.y Tue Jul 14 02:16:21 2020 (r542178) +++ branches/2020Q3/mail/emil/files/patch-getoption.y Tue Jul 14 02:18:01 2020 (r542179) @@ -1,6 +1,6 @@ --- getoption.y.orig 1996-06-04 13:17:35 UTC +++ getoption.y -@@ -163,13 +163,10 @@ static int Ycmp(char * pattern, char * s +@@ -163,14 +163,11 @@ static int Ycmp(char * pattern, char * string) extern char * yytext; /* defined by flex */ @@ -10,8 +10,36 @@ return 1; } -*/ -- --#define yywrap() 1 +-#define yywrap() 1 +- static void yyerror(char * msg) { + char ebuf[2048]; +@@ -309,7 +306,7 @@ struct config_struct * getoption(char * r, char * s, c + struct member_struct * mm; + struct config_struct * gg; + +-#ifdef YYDEBUG ++#if YYDEBUG + extern int yydebug; + yydebug = 1; + #endif +@@ -344,7 +341,7 @@ struct config_struct * getmember(char * name) + { + struct config_struct * gg; + +-#ifdef YYDEBUG ++#if YYDEBUG + extern int yydebug; + yydebug = 1; + #endif +@@ -443,7 +440,7 @@ char ** get_mailer(char * mailer) + { + struct mailer_struct * mm; + +-#ifdef YYDEBUG ++#if YYDEBUG + extern int yydebug; + yydebug = 1; + #endif