Date: Sat, 26 Sep 2020 11:58:01 +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: r550172 - in head/games/garden-of-coloured-lights: . files Message-ID: <202009261158.08QBw1VH063732@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: se Date: Sat Sep 26 11:58:01 2020 New Revision: 550172 URL: https://svnweb.freebsd.org/changeset/ports/550172 Log: Fix build with -fno-common Added: head/games/garden-of-coloured-lights/files/patch-src_main.c (contents, props changed) Modified: head/games/garden-of-coloured-lights/Makefile Modified: head/games/garden-of-coloured-lights/Makefile ============================================================================== --- head/games/garden-of-coloured-lights/Makefile Sat Sep 26 11:52:22 2020 (r550171) +++ head/games/garden-of-coloured-lights/Makefile Sat Sep 26 11:58:01 2020 (r550172) @@ -3,7 +3,7 @@ PORTNAME= garden-of-coloured-lights PORTVERSION= 1.0.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/garden/garden/${PORTVERSION}/ DISTNAME= garden-${PORTVERSION} Added: head/games/garden-of-coloured-lights/files/patch-src_main.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/garden-of-coloured-lights/files/patch-src_main.c Sat Sep 26 11:58:01 2020 (r550172) @@ -0,0 +1,11 @@ +--- src/main.c.orig 2015-01-19 20:19:08 UTC ++++ src/main.c +@@ -55,7 +55,7 @@ struct enemystruct enemy [NO_ENEMIES]; + struct ebulletstruct ebullet [NO_EBULLETS]; + struct pbulletstruct pbullet [NO_PBULLETS]; + struct arenastruct arena; +-struct eclassstruct eclass [NO_ENEMY_TYPES]; ++extern struct eclassstruct eclass [NO_ENEMY_TYPES]; + struct cloudstruct cloud [NO_CLOUDS]; + struct bossstruct boss; +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009261158.08QBw1VH063732>