svn commit: r552861 - head/games/crispy-doom

Piotr Kubaj pkubaj at FreeBSD.org
Wed Oct 21 10:44:13 UTC 2020


Author: pkubaj
Date: Wed Oct 21 10:44:12 2020
New Revision: 552861
URL: https://svnweb.freebsd.org/changeset/ports/552861

Log:
  games/crispy-doom: fix build on GCC architectures
  
  Use C99:
  am_map.c:628: error: 'for' loop initial declaration used outside C99 mode

Modified:
  head/games/crispy-doom/Makefile

Modified: head/games/crispy-doom/Makefile
==============================================================================
--- head/games/crispy-doom/Makefile	Wed Oct 21 10:26:21 2020	(r552860)
+++ head/games/crispy-doom/Makefile	Wed Oct 21 10:44:12 2020	(r552861)
@@ -16,6 +16,7 @@ LIB_DEPENDS=	libsamplerate.so:audio/libsamplerate \
 CONFLICTS_INSTALL=	chocolate-doom
 
 USES=		autoreconf pkgconfig python:build sdl shebangfix
+USE_CSTD=	c99
 USE_SDL=	mixer2 net2 sdl2
 GNU_CONFIGURE=	yes
 SHEBANG_FILES=	man/docgen man/simplecpp


More information about the svn-ports-head mailing list