svn commit: r547286 - in head: games/netradiant/files misc/geekcode

Alexey Dokuchaev danfe at FreeBSD.org
Tue Sep 1 18:46:43 UTC 2020


Author: danfe
Date: Tue Sep  1 18:46:42 2020
New Revision: 547286
URL: https://svnweb.freebsd.org/changeset/ports/547286

Log:
  Force -fcommon for the time being, fixing the code looks impractical.
  This is to fix the build against modern compilers (Clang 11, GCC 10).
  
  Reported by:	pkg-fallout

Modified:
  head/games/netradiant/files/patch-Makefile
  head/misc/geekcode/Makefile

Modified: head/games/netradiant/files/patch-Makefile
==============================================================================
--- head/games/netradiant/files/patch-Makefile	Tue Sep  1 18:33:18 2020	(r547285)
+++ head/games/netradiant/files/patch-Makefile	Tue Sep  1 18:46:42 2020	(r547286)
@@ -1,5 +1,14 @@
---- Makefile.orig	2013-06-30 22:04:34.000000000 +0800
-+++ Makefile	2013-09-06 16:56:05.000000000 +0800
+--- Makefile.orig	2015-06-21 12:05:51 UTC
++++ Makefile
+@@ -112,7 +112,7 @@ ifeq ($(OS),Windows_NT)
+ 	OS = Win32
+ endif
+ 
+-CFLAGS_COMMON = -MMD -W -Wall -Wcast-align -Wcast-qual -Wno-unused-parameter -fno-strict-aliasing
++CFLAGS_COMMON = -MMD -W -Wall -Wcast-align -Wcast-qual -Wno-unused-parameter -fcommon
+ CPPFLAGS_COMMON =
+ LDFLAGS_COMMON =
+ LIBS_COMMON =
 @@ -153,7 +153,7 @@
  else
  

Modified: head/misc/geekcode/Makefile
==============================================================================
--- head/misc/geekcode/Makefile	Tue Sep  1 18:33:18 2020	(r547285)
+++ head/misc/geekcode/Makefile	Tue Sep  1 18:46:42 2020	(r547286)
@@ -12,7 +12,7 @@ COMMENT=	Geek Code Generator
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS}"
+MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS} -fcommon"
 
 PLIST_FILES=	bin/geekcode
 PORTDOCS=	geekcode.txt


More information about the svn-ports-all mailing list