Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Nov 2019 18:18:54 +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: r517343 - head/audio/pulseeffects
Message-ID:  <201911121818.xACIIs7R092931@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Nov 12 18:18:54 2019
New Revision: 517343
URL: https://svnweb.freebsd.org/changeset/ports/517343

Log:
  audio/pulseeffects: fix build on GCC architectures
  
  C++17 compiler is needed:
  src/convolver/meson.build:5:7: ERROR: C++ Compiler does not support -std=c++17
  
  Approved by:	mentors (implicit approval)

Modified:
  head/audio/pulseeffects/Makefile

Modified: head/audio/pulseeffects/Makefile
==============================================================================
--- head/audio/pulseeffects/Makefile	Tue Nov 12 18:13:05 2019	(r517342)
+++ head/audio/pulseeffects/Makefile	Tue Nov 12 18:18:54 2019	(r517343)
@@ -41,8 +41,9 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cairo>0:graphics/p
 		mda-lv2>0:audio/mda-lv2 \
 		zam-plugins-lv2>0:audio/zam-plugins-lv2
 
-USES=		desktop-file-utils libtool localbase:ldflags gettext gnome meson ninja \
-		pathfix pkgconfig python:3.6+ shebangfix
+USES=		compiler:c++17-lang desktop-file-utils libtool \
+		localbase:ldflags gettext gnome meson ninja pathfix pkgconfig \
+		python:3.6+ shebangfix
 USE_GNOME=	cairo gconf2 gtkmm30 libsigc++20 pygobject3
 USE_GSTREAMER1=	bad bs2b good ladspa lv2 pulse webrtcdsp
 USE_LDCONFIG=	yes



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