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 | 1caddcd57efcd4b432b426872e419afb81b0cc62 (patch) | |
tree | e08a9e87099be9e83e4f435969fd3ecc34fb5a1b | |
parent | 796433aa5e86bd08c0966f38591573ea13e39c71 (diff) | |
download | pkgsrc-1caddcd57efcd4b432b426872e419afb81b0cc62.tar.gz |
Fix comment and explain why GCC >= 4.8 is required.
-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 |