Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Dec 2020 00:14:17 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r559687 - head/math/sound-of-sorting
Message-ID:  <202012310014.0BV0EH3Q041897@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@FreeBSD.orgC
+MAINTAINER=	se@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012310014.0BV0EH3Q041897>