svn commit: r546747 - head/games/cdogs-sdl

Tobias C. Berner tcberner at FreeBSD.org
Fri Aug 28 16:17:46 UTC 2020


Author: tcberner
Date: Fri Aug 28 16:17:45 2020
New Revision: 546747
URL: https://svnweb.freebsd.org/changeset/ports/546747

Log:
  games/cogs-sdl: fix build on recent current
  
  - upstream has some WIP to fix build with gcc10:
  	https://github.com/cxong/cdogs-sdl/commit/ee2b3acd126aeb091bfb115a6d25a25159e4d357
  - unfortunately this was not enough, as it did not address the duplicte symbols

Modified:
  head/games/cdogs-sdl/Makefile

Modified: head/games/cdogs-sdl/Makefile
==============================================================================
--- head/games/cdogs-sdl/Makefile	Fri Aug 28 16:09:15 2020	(r546746)
+++ head/games/cdogs-sdl/Makefile	Fri Aug 28 16:17:45 2020	(r546747)
@@ -15,4 +15,7 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	cxong
 CMAKE_ARGS=	-DCDOGS_DATA_DIR=${DATADIR}/
 
+# Fix with clang11
+CFLAGS+=	-fcommon
+
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list