Thu Sep 4 09:55:29 2014 UTC ()
Fix comment and explain why GCC >= 4.8 is required.


(jperkin)
diff -r1.35 -r1.36 pkgsrc/www/webkit-gtk/Makefile.common

cvs diff -r1.35 -r1.36 pkgsrc/www/webkit-gtk/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/www/webkit-gtk/Attic/Makefile.common 2014/09/01 21:11:17 1.35
+++ pkgsrc/www/webkit-gtk/Attic/Makefile.common 2014/09/04 09:55:29 1.36
@@ -1,32 +1,33 @@ @@ -1,32 +1,33 @@
1# $NetBSD: Makefile.common,v 1.35 2014/09/01 21:11:17 wiz Exp $ 1# $NetBSD: Makefile.common,v 1.36 2014/09/04 09:55:29 jperkin Exp $
2# used by www/webkit-gtk/Makefile 2# used by www/webkit-gtk/Makefile
3 3
4DISTNAME= webkitgtk-2.4.5 4DISTNAME= webkitgtk-2.4.5
5CATEGORIES= www 5CATEGORIES= www
6MASTER_SITES= http://www.webkitgtk.org/releases/ 6MASTER_SITES= http://www.webkitgtk.org/releases/
7EXTRACT_SUFX= .tar.xz 7EXTRACT_SUFX= .tar.xz
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.webkitgtk.org/ 10HOMEPAGE= http://www.webkitgtk.org/
11 11
12DISTINFO_FILE= ${.CURDIR}/../../www/webkit-gtk/distinfo 12DISTINFO_FILE= ${.CURDIR}/../../www/webkit-gtk/distinfo
13PATCHDIR= ${.CURDIR}/../../www/webkit-gtk/patches 13PATCHDIR= ${.CURDIR}/../../www/webkit-gtk/patches
14 14
15USE_LANGUAGES= c c++ 15USE_LANGUAGES= c c++
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
17USE_TOOLS+= automake bison gmake perl:build pkg-config msgfmt 17USE_TOOLS+= automake bison gmake perl:build pkg-config msgfmt
18# GCC >= 4.7 or Clang >= 3.3 18
19GCC_REQD=4.8 19# GCC >= 4.8 (for std::this_thread::yield() at least) or Clang >= 3.3
 20GCC_REQD+= 4.8
20 21
21PKGCONFIG_OVERRIDE= Source/WebKit/gtk/webkit.pc.in 22PKGCONFIG_OVERRIDE= Source/WebKit/gtk/webkit.pc.in
22 23
23MAKE_FILE= GNUmakefile 24MAKE_FILE= GNUmakefile
24GNU_CONFIGURE= yes 25GNU_CONFIGURE= yes
25 26
26CONFIGURE_ARGS+= --enable-x11-target \ 27CONFIGURE_ARGS+= --enable-x11-target \
27 --disable-geolocation \ 28 --disable-geolocation \
28 --disable-optimizations \ 29 --disable-optimizations \
29 --disable-gtk-doc-html 30 --disable-gtk-doc-html
30 31
31.include "options.mk" 32.include "options.mk"
32 33