svn commit: r500900 - head/editors/wxhexeditor

Piotr Kubaj pkubaj at FreeBSD.org
Mon May 6 08:40:46 UTC 2019


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}"
 


More information about the svn-ports-all mailing list