svn commit: r542179 - branches/2020Q3/mail/emil/files

Jung-uk Kim jkim at FreeBSD.org
Tue Jul 14 02:18:01 UTC 2020


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


More information about the svn-ports-all mailing list