Do not enable webkit-jit option by default on amd64.

It causes segfaults in gnucash reports as of gnucash-2.6.

Bump PKGREVISION.
This commit is contained in:
wiz 2014-05-22 07:09:26 +00:00
parent 8df3ca8d9d
commit d5a1b4f1f6
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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