summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-05-22 07:09:26 +0000
committerwiz <wiz@pkgsrc.org>2014-05-22 07:09:26 +0000
commit55675ccad3e0dea5366f2b7f716e4e11dc6145fe (patch)
tree34e6cfd4836cbe5e3e8623f48337944c5f7c07a7
parent4c79f5c3447e94f7f35d27b4939cc9ac1baf3e75 (diff)
downloadpkgsrc-55675ccad3e0dea5366f2b7f716e4e11dc6145fe.tar.gz
Do not enable webkit-jit option by default on amd64.
It causes segfaults in gnucash reports as of gnucash-2.6. Bump PKGREVISION.
-rw-r--r--www/webkit-gtk/Makefile4
-rw-r--r--www/webkit-gtk/options.mk4
2 files changed, 4 insertions, 4 deletions
diff --git a/www/webkit-gtk/Makefile b/www/webkit-gtk/Makefile
index ec22c1770ae..e8072f57fa5 100644
--- a/www/webkit-gtk/Makefile
+++ b/www/webkit-gtk/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.82 2014/05/05 00:48:27 ryoon Exp $
+# $NetBSD: Makefile,v 1.83 2014/05/22 07:09:26 wiz Exp $
.include "Makefile.common"
PKGNAME= ${DISTNAME:S/webkitgtk/webkit-gtk/}
-PKGREVISION= 14
+PKGREVISION= 15
COMMENT= GTK2 port of the WebKit browser engine
diff --git a/www/webkit-gtk/options.mk b/www/webkit-gtk/options.mk
index f697185cdc8..f730626337e 100644
--- a/www/webkit-gtk/options.mk
+++ b/www/webkit-gtk/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.3 2013/03/20 13:37:49 drochner Exp $
+# $NetBSD: options.mk,v 1.4 2014/05/22 07:09:26 wiz Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.webkit-gtk
@@ -8,7 +8,7 @@ PKG_SUGGESTED_OPTIONS=
.include "../../mk/bsd.prefs.mk"
# XXX JIT produces invalid code on NetBSD/i386
-.if empty(MACHINE_PLATFORM:MNetBSD-*-i386)
+.if empty(MACHINE_PLATFORM:MNetBSD-*-i386) && empty(MACHINE_PLATFORM:MNetBSD-*-x86_64)
PKG_SUGGESTED_OPTIONS+= webkit-jit
.endif