svn commit: r559687 - head/math/sound-of-sorting

Piotr Kubaj pkubaj at FreeBSD.org
Thu Dec 31 00:14:17 UTC 2020


Author: pkubaj
Date: Thu Dec 31 00:14:16 2020
New Revision: 559687
URL: https://svnweb.freebsd.org/changeset/ports/559687

Log:
  math/sound-of-sorting: fix build on GCC architectures
  
  /usr/local/include/wx-3.0/wx/strvararg.h:350: error: ISO C++ forbids declaration of 'is_enum' with no type
  /usr/local/include/wx-3.0/wx/strvararg.h:350: error: typedef name may not be a nested-name-specifier
  /usr/local/include/wx-3.0/wx/strvararg.h:350: error: expected ';' before '<' token
  /usr/local/include/wx-3.0/wx/strvararg.h:354: error: 'is_enum' was not declared in this scope
  /usr/local/include/wx-3.0/wx/strvararg.h:354: error: template argument 1 is invalid
  
  While here, fix obvious typo in maintainer.

Modified:
  head/math/sound-of-sorting/Makefile

Modified: head/math/sound-of-sorting/Makefile
==============================================================================
--- head/math/sound-of-sorting/Makefile	Wed Dec 30 23:54:00 2020	(r559686)
+++ head/math/sound-of-sorting/Makefile	Thu Dec 31 00:14:16 2020	(r559687)
@@ -7,12 +7,12 @@ DISTVERSIONPREFIX=	${PORTNAME}-
 PORTREVISION=	2
 CATEGORIES=	math
 
-MAINTAINER=	se at FreeBSD.orgC
+MAINTAINER=	se at FreeBSD.org
 COMMENT=	Visualization and "Audibilization" of Sorting Algorithms
 
 LICENSE=	GPLv3
 
-USES=		sdl
+USES=		compiler:c++11-lang sdl
 
 GNU_CONFIGURE=	yes
 USE_SDL=	sdl


More information about the svn-ports-all mailing list