diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-09-04 09:55:29 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-09-04 09:55:29 +0000 |
commit | 058eaca7c9fdd626fe7953e4871f267da99d478d (patch) | |
tree | e08a9e87099be9e83e4f435969fd3ecc34fb5a1b /www | |
parent | e09fb9b824498765c60bd83bbf9846bee5ba9f7d (diff) | |
download | pkgsrc-058eaca7c9fdd626fe7953e4871f267da99d478d.tar.gz |
Fix comment and explain why GCC >= 4.8 is required.
Diffstat (limited to 'www')
-rw-r--r-- | www/webkit-gtk/Makefile.common | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/www/webkit-gtk/Makefile.common b/www/webkit-gtk/Makefile.common index f4c166beb32..31f5cb7d641 100644 --- a/www/webkit-gtk/Makefile.common +++ b/www/webkit-gtk/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.35 2014/09/01 21:11:17 wiz Exp $ +# $NetBSD: Makefile.common,v 1.36 2014/09/04 09:55:29 jperkin Exp $ # used by www/webkit-gtk/Makefile DISTNAME= webkitgtk-2.4.5 @@ -15,8 +15,9 @@ PATCHDIR= ${.CURDIR}/../../www/webkit-gtk/patches USE_LANGUAGES= c c++ USE_LIBTOOL= yes USE_TOOLS+= automake bison gmake perl:build pkg-config msgfmt -# GCC >= 4.7 or Clang >= 3.3 -GCC_REQD=4.8 + +# GCC >= 4.8 (for std::this_thread::yield() at least) or Clang >= 3.3 +GCC_REQD+= 4.8 PKGCONFIG_OVERRIDE= Source/WebKit/gtk/webkit.pc.in |