svn commit: r498221 - head/sysutils/jstest-gtk

Mark Linimon linimon at FreeBSD.org
Sun Apr 7 01:03:31 UTC 2019


Author: linimon
Date: Sun Apr  7 01:03:30 2019
New Revision: 498221
URL: https://svnweb.freebsd.org/changeset/ports/498221

Log:
  This port needs C++11-compatible compiler.  Add USES=compiler:c++11-lang
  to fix build on GCC-based architectures:
  
    /usr/local/include/sigc++-2.0/sigc++/visit_each.h:22:23: error: type_traits: No such file or directory
  
  While here, pet portlint.
  
  PR:		236986
  Submitted by:	Piotr Kubaj
  Approved by:	maintainer

Modified:
  head/sysutils/jstest-gtk/Makefile

Modified: head/sysutils/jstest-gtk/Makefile
==============================================================================
--- head/sysutils/jstest-gtk/Makefile	Sun Apr  7 00:54:35 2019	(r498220)
+++ head/sysutils/jstest-gtk/Makefile	Sun Apr  7 01:03:30 2019	(r498221)
@@ -10,7 +10,8 @@ COMMENT=	Simple joystick tester based on Gtk+
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		cmake pkgconfig libtool localbase:ldflags
+USES=		cmake compiler:c++11-lang gnome libtool localbase:ldflags \
+		pkgconfig
 USE_GNOME=	gtkmm30 libsigc++20
 
 INSTALLS_ICONS=	yes


More information about the svn-ports-head mailing list