diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-08-12 20:13:18 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-08-12 20:13:18 +0000 |
commit | af67b6ba5376261d099a1fb7d54a692ee2f3cc3c (patch) | |
tree | 8a9a0979501410226b2148345ccad5cf42be2b95 | |
parent | Fix gemspec for rubygem-rack-test 1.1.0 update (diff) |
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)
Notes
Notes:
svn path=/head/; revision=508797
-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> |