Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jan 2018 11:24:47 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r459239 - head/audio/audex
Message-ID:  <201801171124.w0HBOlVY034464@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Wed Jan 17 11:24:47 2018
New Revision: 459239
URL: https://svnweb.freebsd.org/changeset/ports/459239

Log:
  audio/audex, fix build with clang6
  
  Force -std=gnu++98, there are too many lines that require
  a change for string-literal fixes.
  
  PR:		224669

Modified:
  head/audio/audex/Makefile

Modified: head/audio/audex/Makefile
==============================================================================
--- head/audio/audex/Makefile	Wed Jan 17 11:05:25 2018	(r459238)
+++ head/audio/audex/Makefile	Wed Jan 17 11:24:47 2018	(r459239)
@@ -2,7 +2,7 @@
 
 PORTNAME=	audex
 PORTVERSION=	0.79
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	audio kde
 MASTER_SITES=	SF/${PORTNAME}/src
 
@@ -17,6 +17,8 @@ USES=		tar:xz cmake kde:4
 USE_KDE=	automoc4 kdelibs libkcddb libkcompactdisc
 USE_QT4=	gui dbus network svg xml \
 		qmake_build moc_build rcc_build uic_build
+# Too many changes for suffix on literals without a space.
+USE_CXXSTD=	gnu++98
 
 OPTIONS_DEFINE=		NLS EYED3 FAAC FLAC LAME VORBIS
 OPTIONS_DEFAULT=	FLAC VORBIS



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