diff options
author | linimon <linimon@FreeBSD.org> | 2018-11-24 16:58:51 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2018-11-24 16:58:51 +0800 |
commit | 98b3f5b3dcbb66c0d0bdd31f7882babb7a20aae6 (patch) | |
tree | e7e6fbb18ee174b4e7d32c4f1fde2d2d90313aa5 /audio/osalp | |
parent | 1e310c51970c7687a652788dc417af3a34558285 (diff) | |
download | freebsd-ports-gnome-98b3f5b3dcbb66c0d0bdd31f7882babb7a20aae6.tar.gz freebsd-ports-gnome-98b3f5b3dcbb66c0d0bdd31f7882babb7a20aae6.tar.zst freebsd-ports-gnome-98b3f5b3dcbb66c0d0bdd31f7882babb7a20aae6.zip |
-Wno-c++11-narrowing is not supported by base GCC; using
USE_CXXSTD=c++98 makes the port build with both base clang and gcc.
PR: 233308
Submitted by: Piotr Kubaj
Diffstat (limited to 'audio/osalp')
-rw-r--r-- | audio/osalp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/osalp/Makefile b/audio/osalp/Makefile index 6a55c117ed8e..03f73c838c26 100644 --- a/audio/osalp/Makefile +++ b/audio/osalp/Makefile @@ -15,11 +15,11 @@ LIB_DEPENDS= libmp3lame.so:audio/lame \ libvorbis.so:audio/libvorbis USES= libtool localbase:ldflags +USE_CXXSTD= c++98 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-all CFLAGS+= -fPIC -DPIC -CXXFLAGS+= -Wno-c++11-narrowing USE_LDCONFIG= yes |