diff options
Diffstat (limited to 'audio/mumble')
-rw-r--r-- | audio/mumble/Makefile | 5 | ||||
-rw-r--r-- | audio/mumble/files/patch-cplusplus.pri | 13 |
2 files changed, 16 insertions, 2 deletions
diff --git a/audio/mumble/Makefile b/audio/mumble/Makefile index 7d3237cce535..6fe88e8508d8 100644 --- a/audio/mumble/Makefile +++ b/audio/mumble/Makefile @@ -3,7 +3,7 @@ PORTNAME= mumble PORTVERSION= 1.2.19 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= audio MAINTAINER= feld@FreeBSD.org @@ -24,7 +24,8 @@ LIB_DEPENDS+= libspeex.so:audio/speex \ PLIST_SUB+= PORTVERSION="${PORTVERSION}" -USES= compiler cpe desktop-file-utils gmake pkgconfig qmake qt:4 ssl +USES= compiler:c++11-lang cpe desktop-file-utils gmake pkgconfig qmake qt:4 ssl +USE_CXXSTD= c++11 USE_GITHUB= yes GH_ACCOUNT= mumble-voip GH_PROJECT= mumble celt-0.7.0:mumble_celt_0_7 celt-0.11.0:mumble_celt_0_11 diff --git a/audio/mumble/files/patch-cplusplus.pri b/audio/mumble/files/patch-cplusplus.pri new file mode 100644 index 000000000000..bceb2dc3576a --- /dev/null +++ b/audio/mumble/files/patch-cplusplus.pri @@ -0,0 +1,13 @@ +--- cplusplus.pri.orig 2017-01-27 12:29:08 UTC ++++ cplusplus.pri +@@ -103,8 +103,8 @@ unix { + # older compilers. In GCC, the following + # flags mean the same thing: + # -std=c++98, -std=c++03, -ansi. +- QMAKE_CXXFLAGS += -std=c++98 +- QMAKE_LFLAGS += -std=c++98 ++ # QMAKE_CXXFLAGS += -std=c++98 ++ # QMAKE_LFLAGS += -std=c++98 + } + + |