Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Mar 2019 08:57:50 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r495858 - head/audio/yoshimi
Message-ID:  <201903160857.x2G8voUk049625@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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