Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Sep 2020 16:55:18 +0000 (UTC)
From:      =?UTF-8?Q?Stefan_E=c3=9fer?= <se@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r549043 - in head/lang/pcc: . files
Message-ID:  <202009191655.08JGtIfN036524@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: se
Date: Sat Sep 19 16:55:18 2020
New Revision: 549043
URL: https://svnweb.freebsd.org/changeset/ports/549043

Log:
  Fix build with -fno-common

Added:
  head/lang/pcc/files/patch-cc_ccom_scan.l   (contents, props changed)
  head/lang/pcc/files/patch-cc_cxxcom_scan.l   (contents, props changed)
Modified:
  head/lang/pcc/Makefile
  head/lang/pcc/distinfo

Modified: head/lang/pcc/Makefile
==============================================================================
--- head/lang/pcc/Makefile	Sat Sep 19 16:45:34 2020	(r549042)
+++ head/lang/pcc/Makefile	Sat Sep 19 16:55:18 2020	(r549043)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pcc
 PORTVERSION=	1.1.0
+PORTREVISION=	1
 CATEGORIES=	lang
 MASTER_SITES=	ftp://pcc.ludd.ltu.se/pub/pcc-releases/ \
 		http://pcc.ludd.ltu.se/ftp/pub/pcc-releases/ \

Modified: head/lang/pcc/distinfo
==============================================================================
--- head/lang/pcc/distinfo	Sat Sep 19 16:45:34 2020	(r549042)
+++ head/lang/pcc/distinfo	Sat Sep 19 16:55:18 2020	(r549043)
@@ -1,2 +1,3 @@
+TIMESTAMP = 1600532163
 SHA256 (pcc-1.1.0.tgz) = d9e3fed84c767dcddefb6b1f854d5da8921f3f65d8bd02997743412f41474d64
 SIZE (pcc-1.1.0.tgz) = 848427

Added: head/lang/pcc/files/patch-cc_ccom_scan.l
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/pcc/files/patch-cc_ccom_scan.l	Sat Sep 19 16:55:18 2020	(r549043)
@@ -0,0 +1,12 @@
+--- cc/ccom/scan.l.orig	2014-10-12 17:39:26 UTC
++++ cc/ccom/scan.l
+@@ -236,7 +236,8 @@ L?\"(\\.|[^\\"])*\"	{ yylval.strp = yytext; return C_S
+ 
+ %%
+ 
+-int lineno, issyshdr;
++extern int lineno;
++int issyshdr;
+ char *ftitle = "<stdin>";
+ 
+ int

Added: head/lang/pcc/files/patch-cc_cxxcom_scan.l
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/pcc/files/patch-cc_cxxcom_scan.l	Sat Sep 19 16:55:18 2020	(r549043)
@@ -0,0 +1,12 @@
+--- cc/cxxcom/scan.l.orig	2014-08-18 11:27:34 UTC
++++ cc/cxxcom/scan.l
+@@ -220,7 +220,8 @@ L?\"(\\.|[^\\"])*\"	{ yylval.strp = yytext; return C_S
+ 
+ %%
+ 
+-int lineno, issyshdr;
++extern int lineno;
++int issyshdr;
+ char *ftitle = "<stdin>";
+ 
+ static int



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009191655.08JGtIfN036524>