svn commit: r549663 - in head/lang/snobol4: . files

Stefan Eßer se at FreeBSD.org
Wed Sep 23 08:12:40 UTC 2020


Author: se
Date: Wed Sep 23 08:12:39 2020
New Revision: 549663
URL: https://svnweb.freebsd.org/changeset/ports/549663

Log:
  Fix build with -fno-common

Added:
  head/lang/snobol4/files/patch-include_macros.h   (contents, props changed)
Modified:
  head/lang/snobol4/Makefile

Modified: head/lang/snobol4/Makefile
==============================================================================
--- head/lang/snobol4/Makefile	Wed Sep 23 08:10:15 2020	(r549662)
+++ head/lang/snobol4/Makefile	Wed Sep 23 08:12:39 2020	(r549663)
@@ -3,6 +3,7 @@
 
 PORTNAME=	snobol4
 PORTVERSION=	2.0
+PORTREVISION=	1
 CATEGORIES=	lang
 MASTER_SITES=	ftp://ftp.ultimate.com/snobol/
 

Added: head/lang/snobol4/files/patch-include_macros.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/snobol4/files/patch-include_macros.h	Wed Sep 23 08:12:39 2020	(r549663)
@@ -0,0 +1,11 @@
+--- include/macros.h.orig	2014-02-22 22:43:58 UTC
++++ include/macros.h
+@@ -204,7 +204,7 @@ extern volatile int math_error;
+ #define RETURN(VALUE) {RSTSTK(); return (VALUE);}
+ #endif /* TRACE_DEPTH not defined */
+ 
+-struct descr _NORET[1];
++extern struct descr _NORET[1];
+ #define NORET ((ptr_t)_NORET)
+ 
+ /****************/


More information about the svn-ports-all mailing list