Date: Wed, 23 Sep 2020 08:12:40 +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: r549663 - in head/lang/snobol4: . files Message-ID: <202009230812.08N8Cee0018896@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) + + /****************/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009230812.08N8Cee0018896>