svn commit: r433344 - head/games/wizznic

Jan Beich jbeich at FreeBSD.org
Sun Feb 5 03:30:26 UTC 2017


Author: jbeich
Date: Sun Feb  5 03:30:25 2017
New Revision: 433344
URL: https://svnweb.freebsd.org/changeset/ports/433344

Log:
  games/wizznic: use clang and unbreak with gcc5 or later
  
  board.o: In function `doRules':
  board.c:(.text+0x14b1): undefined reference to `getTicks'
  draw.o: In function `drawPath':
  draw.c:(.text+0x90d): undefined reference to `plotPixel'
  draw.o: In function `draw':
  draw.c:(.text+0x9aa): undefined reference to `setting'
  [...]
  
  PR:		216707
  Reported by:	antoine (via exp-run)

Modified:
  head/games/wizznic/Makefile   (contents, props changed)

Modified: head/games/wizznic/Makefile
==============================================================================
--- head/games/wizznic/Makefile	Sun Feb  5 03:30:17 2017	(r433343)
+++ head/games/wizznic/Makefile	Sun Feb  5 03:30:25 2017	(r433344)
@@ -4,7 +4,7 @@
 PORTNAME=	wizznic
 PORTVERSION=	0.9.9
 DISTVERSIONSUFFIX=-src
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	games
 MASTER_SITES=	SF/${PORTNAME}/Source%20Releases/
 
@@ -18,10 +18,10 @@ LIB_DEPENDS=	libpng.so:graphics/png
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}-src
 
 USES=		gmake tar:bzip2
+USE_CSTD=	gnu89
 USE_SDL=	image mixer sdl
 MAKE_ENV=	DATADIR=${DATADIR}/ BINDIR=${PREFIX}/bin
 ALL_TARGET=	sdl
-USE_GCC=	yes
 
 PORTDOCS=	changelog.txt credits.txt music-score-credits.txt readme.txt
 


More information about the svn-ports-head mailing list