diff options
author | riastradh <riastradh@pkgsrc.org> | 2016-03-27 16:56:49 +0000 |
---|---|---|
committer | riastradh <riastradh@pkgsrc.org> | 2016-03-27 16:56:49 +0000 |
commit | 973957bc9fcba97184efb8e7555fab9c807b9ecd (patch) | |
tree | 753a0852a6da9e76b7342c6f800484f1572b7dc9 /net/ekiga | |
parent | 6483b14594f368355eee43098f2127cbbab929cd (diff) | |
download | pkgsrc-973957bc9fcba97184efb8e7555fab9c807b9ecd.tar.gz |
Need GCC >=4.7 for C++11.
Otherwise net/ekiga fails to build altogether on NetBSD 6.
ok dholland
Diffstat (limited to 'net/ekiga')
-rw-r--r-- | net/ekiga/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ekiga/Makefile b/net/ekiga/Makefile index b702396dcff..f7791db3533 100644 --- a/net/ekiga/Makefile +++ b/net/ekiga/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.67 2016/03/05 11:29:03 jperkin Exp $ +# $NetBSD: Makefile,v 1.68 2016/03/27 16:56:49 riastradh Exp $ # DISTNAME= ekiga-3.2.6 @@ -27,6 +27,7 @@ GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_LANGUAGES= c c++ CXXFLAGS+= -std=c++11 +GCC_REQD+= 4.7 .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) |