svn commit: r495858 - head/audio/yoshimi

Mark Linimon linimon at FreeBSD.org
Sat Mar 16 08:57:51 UTC 2019


Author: linimon
Date: Sat Mar 16 08:57:50 2019
New Revision: 495858
URL: https://svnweb.freebsd.org/changeset/ports/495858

Log:
  Fix build on gcc-based architectures:
  
    cc1plus: error: unrecognized command line option "-std=gnu++11"
  
  While here, pet portlint.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/audio/yoshimi/Makefile

Modified: head/audio/yoshimi/Makefile
==============================================================================
--- head/audio/yoshimi/Makefile	Sat Mar 16 08:54:29 2019	(r495857)
+++ head/audio/yoshimi/Makefile	Sat Mar 16 08:57:50 2019	(r495858)
@@ -10,6 +10,10 @@ COMMENT=	Sophisticated software synthesizer
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+BROKEN_aarch64=		fails to compile: c++: warning: argument unused during compilation: '-msse'
+BROKEN_armv6=		fails to compile: c++: warning: argument unused during compilation: '-msse'
+BROKEN_armv7=		fails to compile: c++: warning: argument unused during compilation: '-msse'
+
 BUILD_DEPENDS=	lv2>0:audio/lv2 \
 		dssi>0:audio/dssi \
 		${LOCALBASE}/include/fftw3.h:math/fftw3
@@ -21,11 +25,7 @@ LIB_DEPENDS=	libargp.so:devel/argp-standalone \
 		libjack.so:audio/jack \
 		libmxml.so:textproc/mxml
 
-BROKEN_aarch64=		fails to compile: c++: warning: argument unused during compilation: '-msse'
-BROKEN_armv6=		fails to compile: c++: warning: argument unused during compilation: '-msse'
-BROKEN_armv7=		fails to compile: c++: warning: argument unused during compilation: '-msse'
-
-USES=		cmake ncurses pkgconfig readline:port
+USES=		cmake compiler:c++11-lang ncurses pkgconfig readline:port
 USE_GITHUB=	yes
 USE_GNOME=	cairo
 USE_GL=		gl glu


More information about the svn-ports-all mailing list