svn commit: r550172 - in head/games/garden-of-coloured-lights: . files

Stefan Eßer se at FreeBSD.org
Sat Sep 26 11:58:02 UTC 2020


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;
+ 


More information about the svn-ports-all mailing list