7b644999a5
for v2 of the package. WebKit is an open source web browser engine. WebKit is also the name of the Mac OS X system framework version of the engine that's used by Safari, Dashboard, Mail, and many other OS X applications. WebKit's HTML and JavaScript code began as a branch of the KHTML and KJS libraries from KDE. This is the GTK2+ port of major version 1 of the engine.
27 lines
632 B
Makefile
27 lines
632 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/08/03 22:07:39 wiz Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.webkit-gtk
|
|
PKG_SUPPORTED_OPTIONS= webkit-jit debug
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# XXX JIT produces invalid code on NetBSD/i386
|
|
.if empty(MACHINE_PLATFORM:MNetBSD-*-i386) && empty(MACHINE_PLATFORM:MNetBSD-*-x86_64)
|
|
PKG_SUGGESTED_OPTIONS+= webkit-jit
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mwebkit-jit)
|
|
CONFIGURE_ARGS+= --enable-jit
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-jit
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-debug
|
|
.endif
|