svn commit: r459239 - head/audio/audex
Tobias C. Berner
tcberner at FreeBSD.org
Wed Jan 17 11:24:49 UTC 2018
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
More information about the svn-ports-all
mailing list