diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2019-08-13 04:13:18 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2019-08-13 04:13:18 +0800 |
commit | 85bd54afc132d261380efa6603127ca13847a68e (patch) | |
tree | 8a9a0979501410226b2148345ccad5cf42be2b95 | |
parent | 39bbaa3080a49e7add695a5755e8813cbe4478f8 (diff) | |
download | freebsd-ports-gnome-85bd54afc132d261380efa6603127ca13847a68e.tar.gz freebsd-ports-gnome-85bd54afc132d261380efa6603127ca13847a68e.tar.zst freebsd-ports-gnome-85bd54afc132d261380efa6603127ca13847a68e.zip |
net/liveMedia: fix build with GCC-based architectures
Use C++11 compiler:
MPEG2TransportStreamParser.hh:107: error: a class-key must be used when declaring a friend
Approved by: mentors (implicit approval)
-rw-r--r-- | net/liveMedia/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/liveMedia/Makefile b/net/liveMedia/Makefile index 16189bbacd14..46c0f07325af 100644 --- a/net/liveMedia/Makefile +++ b/net/liveMedia/Makefile @@ -25,7 +25,7 @@ HAS_CONFIGURE= yes CONFIGURE_SCRIPT= genMakefiles CONFIGURE_ARGS= fixed-freebsd -USES= gmake +USES= compiler:c++11-lang gmake USE_LDCONFIG= yes .include <bsd.port.pre.mk> |