Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 May 2019 08:40:45 +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: r500900 - head/editors/wxhexeditor
Message-ID:  <201905060840.x468ej0F067003@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon May  6 08:40:45 2019
New Revision: 500900
URL: https://svnweb.freebsd.org/changeset/ports/500900

Log:
  editors/wxhexeditor: fix build with GCC-based architectures
  
  Add USES=compiler:c++11-lang to fix:
  /usr/local/include/wx-3.0/wx/strvararg.h:350: error: ISO C++ forbids declaration of 'is_enum' with no typeIn file included from /usr/local/include/wx-3.0/wx/string.h:46,
  
  Approved by:	mentors (implicit approval)

Modified:
  head/editors/wxhexeditor/Makefile

Modified: head/editors/wxhexeditor/Makefile
==============================================================================
--- head/editors/wxhexeditor/Makefile	Mon May  6 05:55:14 2019	(r500899)
+++ head/editors/wxhexeditor/Makefile	Mon May  6 08:40:45 2019	(r500900)
@@ -16,7 +16,7 @@ LICENSE=	GPLv2
 LIB_DEPENDS=	libudis86.so:devel/udis86 \
 		libmhash.so:security/mhash
 
-USES=		gettext-tools gmake tar:xz
+USES=		compiler:c++11-lang gettext-tools gmake tar:xz
 USE_WX=		3.0+
 MAKE_ARGS=	WXCONFIG="${WX_CONFIG}"
 



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