diff options
author | wiz <wiz@pkgsrc.org> | 2015-07-12 00:44:46 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-07-12 00:44:46 +0000 |
commit | 47800f8c40e5559b4322fe7bdbcd97dce1427d7e (patch) | |
tree | e0d75bba3abe52928a7ad724a3dd5bde53312505 /www | |
parent | 234c260a665807fd03cca50e3469900df45dea20 (diff) | |
download | pkgsrc-47800f8c40e5559b4322fe7bdbcd97dce1427d7e.tar.gz |
Update to 2.8 and new 4.0 webkit API. From Leonardo Taccari in pkgsrc-wip.
2.8.1
What’s new in the WebKitGTK+ 2.8.1 release?
Handle keep-alive connections in GStreamer HTTP source element.
Fix a crash in DOMObjectCache when a wrapped object owned by the cache is unreffed by the user.
Fix rendering of drag and drop icon.
Fix the build with REDIRECTED_XCOMPOSITE_WINDOW disabled in X11 platform.
Fix the build with Wayland target enabled.
Fix the build for HPPA.
2.8
Highlights of the WebKitGTK+ 2.8.0 release
Initial gestures support.
HTML5 notifications.
User script messages.
HTML5 color input.
APNG support.
Performance improvements.
Playing audio notification signal.
Web view background colors.
and lots of changes in the 2.6 series; major changes in 2.6 were:
Highlights of the WebKitGTK+ 2.6.0 release
WebKit1 API has been removed.
Switch to CMake build system.
Binary version bump to make WebKit1 and WebKit2 parallel installable.
Several API changes.
The DOM bindings API has been split into stable and unstable parts.
Support for browser plugins using GTK+3, leaving the GTK+2
dependency optional for building a plugin process with support
for GTK+2 plugins.
HighDPI support for non-accelerated compositing contents.
Dynamic user agent string depending on the site.
User scripts API.
Diffstat (limited to 'www')
24 files changed, 503 insertions, 908 deletions
diff --git a/www/webkit-gtk/DESCR b/www/webkit-gtk/DESCR index 77db505d006..8f5106660f5 100644 --- a/www/webkit-gtk/DESCR +++ b/www/webkit-gtk/DESCR @@ -4,4 +4,4 @@ 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 the engine. +This is the GTK port of the engine. diff --git a/www/webkit-gtk/Makefile b/www/webkit-gtk/Makefile index 525f5faa511..85792cd6240 100644 --- a/www/webkit-gtk/Makefile +++ b/www/webkit-gtk/Makefile @@ -1,21 +1,21 @@ -# $NetBSD: Makefile,v 1.91 2015/06/12 10:52:16 wiz Exp $ +# $NetBSD: Makefile,v 1.92 2015/07/12 00:44:46 wiz Exp $ -PKGREVISION= 1 .include "Makefile.common" PKGNAME= ${DISTNAME:S/webkitgtk/webkit-gtk/} -COMMENT= GTK2 port of the WebKit browser engine +COMMENT= GTK port of the WebKit browser engine -CONFIGURE_ARGS+= --with-gtk=2.0 -CONFIGURE_ARGS+= --disable-webkit2 +BUILD_DEPENDS+= gettext-tools>=0.18:../../devel/gettext-tools -.if ${OPSYS} == "NetBSD" && ${MACHINE_CPU:U} == "arm" -LDFLAGS+= -Wl,-no-keep-memory -Wl,-reduce-memory +# shm_open(3) and shm_unlink(3) appeared in NetBSD 7.0 +.if !empty(MACHINE_PLATFORM:MNetBSD-*) +DEPENDS+= osabi-NetBSD>=7.0:../../pkgtools/osabi .endif #introspection support BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.24.17nb3 .include "../../x11/gtk2/buildlink3.mk" +.include "../../x11/gtk3/buildlink3.mk" .include "../../graphics/cairo-gobject/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/webkit-gtk/Makefile.common b/www/webkit-gtk/Makefile.common index d511ab89d71..e12b9314015 100644 --- a/www/webkit-gtk/Makefile.common +++ b/www/webkit-gtk/Makefile.common @@ -1,42 +1,32 @@ -# $NetBSD: Makefile.common,v 1.45 2015/07/06 10:28:12 richard Exp $ -# used by www/webkit-gtk/Makefile +# $NetBSD: Makefile.common,v 1.46 2015/07/12 00:44:46 wiz Exp $ +# used by wip/webkit-gtk/Makefile -DISTNAME= webkitgtk-2.4.9 +DISTNAME= webkitgtk-2.8.1 CATEGORIES= www MASTER_SITES= http://www.webkitgtk.org/releases/ EXTRACT_SUFX= .tar.xz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.webkitgtk.org/ -LICENSE= 2-clause-bsd AND gnu-lgpl-v2 DISTINFO_FILE= ${.CURDIR}/../../www/webkit-gtk/distinfo PATCHDIR= ${.CURDIR}/../../www/webkit-gtk/patches +USE_CMAKE= yes USE_LANGUAGES= c c++ -USE_LIBTOOL= yes +#USE_LIBTOOL= yes USE_TOOLS+= automake bison gmake perl:build pkg-config msgfmt -USE_TOOLS+= msgmerge xgettext # GCC >= 4.8 (for std::this_thread::yield() at least) or Clang >= 3.3 GCC_REQD+= 4.8 -# gmake 3.81 enters a 100% CPU spin. -GMAKE_REQD+= 4.1 +PKGCONFIG_OVERRIDE+= Source/JavaScriptCore/javascriptcoregtk.pc.in +PKGCONFIG_OVERRIDE+= Source/WebKit2/webkit2gtk.pc.in +PKGCONFIG_OVERRIDE+= Source/WebKit2/webkit2gtk-web-extension.pcin -PKGCONFIG_OVERRIDE= Source/WebKit/gtk/webkit.pc.in - -MAKE_FILE= GNUmakefile -GNU_CONFIGURE= yes - -CONFIGURE_ARGS+= --enable-x11-target \ - --disable-geolocation \ - --disable-gtk-doc-html - -.include "../../mk/compiler.mk" -.if (!empty(PKGSRC_COMPILER:Mgcc) && !empty(_USE_PKGSRC_GCC:M[yY][eE][sS])) -BUILDLINK_TRANSFORM+= rm:-D_FORTIFY_SOURCE=2 -.endif +CMAKE_ARGS+= -DPORT=GTK +CMAKE_ARGS+= -DENABLE_X11_TARGET=ON +CMAKE_ARGS+= -DENABLE_MINIBROWSER=ON .include "options.mk" @@ -46,8 +36,7 @@ REPLACE_PERL+= Source/JavaScriptCore/create_hash_table \ Source/WebCore/bindings/scripts/InFilesParser.pm \ Source/WebCore/css/*.pl \ Source/WebCore/dom/*.pl \ - Source/WebCore/make-hash-tools.pl \ - Source/WebCore/platform/text/mac/*.pl + Source/WebCore/make-hash-tools.pl REPLACE_PYTHON+= Tools/gtk/*.py \ Tools/gtk/generate-feature-defines-files \ @@ -55,22 +44,32 @@ REPLACE_PYTHON+= Tools/gtk/*.py \ .include "../../lang/ruby/rubyversion.mk" BUILD_DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR} -CONFIGURE_ENV+= RUBY=${RUBY} +CMAKE_ARGS+= -DRUBY_EXECUTABLE=${RUBY} PYTHON_FOR_BUILD_ONLY= yes PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 1.10.2 .include "../../lang/python/application.mk" -CONFIGURE_ENV+= PYTHON=${PYTHONBIN} +CMAKE_ARGS+= -DPYTHON_EXECUTABLE=${PYTHONBIN} + +# +# XXX: Turning -O options with gcc-4.8.4 does not work on NetBSD. Disable +# optimization, according to the gcc(1) manual page: +# +# «If you use multiple -O options, with or without level numbers, the +# last such option is the one that is effective.» +# +# ...this XXX abuse this feature. +CFLAGS+= -O0 CXXFLAGS.SunOS+= -fpermissive +.include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) CXXFLAGS+= -std=c++11 -Wno-c++11-narrowing .endif .if !empty(MACHINE_PLATFORM:MSunOS-*-x86_64) -CONFIGURE_ARGS+= --disable-fast-malloc -CPPFLAGS+= -DUSE_SYSTEM_MALLOC +CMAKE_ARGS+= -DUSE_SYSTEM_MALLOC=ON # XXX: not completely sure (was --disable-fast-malloc) .endif BUILDLINK_API_DEPENDS.glib2+= glib2>=2.32.1 @@ -78,13 +77,12 @@ BUILDLINK_API_DEPENDS.glib2+= glib2>=2.32.1 BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.9.5 BUILDLINK_DEPMETHOD.gobject-introspection+= build .include "../../devel/gobject-introspection/buildlink3.mk" -CONFIGURE_ARGS+= --enable-introspection +CMAKE_ARGS+= -DENABLE_INTROSPECTION=ON .include "../../devel/zlib/buildlink3.mk" .include "../../databases/sqlite3/buildlink3.mk" .include "../../devel/flex/buildlink3.mk" .include "../../devel/gperf/buildlink3.mk" -# This is optional, but needs testing. -#.include "../../devel/pango/buildlink3.mk" +.include "../../devel/pango/buildlink3.mk" # A correct Webkit build requires flex 2.5.33 .include "../../graphics/freetype2/buildlink3.mk" .include "../../graphics/libwebp/buildlink3.mk" @@ -98,6 +96,7 @@ BUILDLINK_API_DEPENDS.gst-plugins1-base+= gst-plugins1-base>=1.0.3 BUILDLINK_API_DEPENDS.libsoup+= libsoup>=2.42.2nb3 .include "../../net/libsoup/buildlink3.mk" .include "../../security/libsecret/buildlink3.mk" +.include "../../security/gnutls/buildlink3.mk" .include "../../textproc/icu/buildlink3.mk" .include "../../textproc/libxslt/buildlink3.mk" .include "../../x11/libXdamage/buildlink3.mk" diff --git a/www/webkit-gtk/PLIST b/www/webkit-gtk/PLIST index c7d8a84b556..0f3671aa000 100644 --- a/www/webkit-gtk/PLIST +++ b/www/webkit-gtk/PLIST @@ -1,563 +1,336 @@ -@comment $NetBSD: PLIST,v 1.22 2014/08/03 22:30:05 wiz Exp $ -bin/jsc-1 -include/webkitgtk-1.0/JavaScriptCore/JSBase.h -include/webkitgtk-1.0/JavaScriptCore/JSContextRef.h -include/webkitgtk-1.0/JavaScriptCore/JSObjectRef.h -include/webkitgtk-1.0/JavaScriptCore/JSStringRef.h -include/webkitgtk-1.0/JavaScriptCore/JSValueRef.h -include/webkitgtk-1.0/JavaScriptCore/JavaScript.h -include/webkitgtk-1.0/JavaScriptCore/WebKitAvailability.h -include/webkitgtk-1.0/webkit/webkit.h -include/webkitgtk-1.0/webkit/webkitapplicationcache.h -include/webkitgtk-1.0/webkit/webkitdefines.h -include/webkitgtk-1.0/webkit/webkitdom.h -include/webkitgtk-1.0/webkit/webkitdownload.h -include/webkitgtk-1.0/webkit/webkitenumtypes.h -include/webkitgtk-1.0/webkit/webkiterror.h -include/webkitgtk-1.0/webkit/webkitfavicondatabase.h -include/webkitgtk-1.0/webkit/webkitfilechooserrequest.h -include/webkitgtk-1.0/webkit/webkitgeolocationpolicydecision.h -include/webkitgtk-1.0/webkit/webkitglobals.h -include/webkitgtk-1.0/webkit/webkithittestresult.h -include/webkitgtk-1.0/webkit/webkiticondatabase.h -include/webkitgtk-1.0/webkit/webkitnetworkrequest.h -include/webkitgtk-1.0/webkit/webkitnetworkresponse.h -include/webkitgtk-1.0/webkit/webkitsecurityorigin.h -include/webkitgtk-1.0/webkit/webkitsoupauthdialog.h -include/webkitgtk-1.0/webkit/webkitspellchecker.h -include/webkitgtk-1.0/webkit/webkitversion.h -include/webkitgtk-1.0/webkit/webkitviewportattributes.h -include/webkitgtk-1.0/webkit/webkitwebbackforwardlist.h -include/webkitgtk-1.0/webkit/webkitwebdatabase.h -include/webkitgtk-1.0/webkit/webkitwebdatasource.h -include/webkitgtk-1.0/webkit/webkitwebframe.h -include/webkitgtk-1.0/webkit/webkitwebhistoryitem.h -include/webkitgtk-1.0/webkit/webkitwebinspector.h -include/webkitgtk-1.0/webkit/webkitwebnavigationaction.h -include/webkitgtk-1.0/webkit/webkitwebplugin.h -include/webkitgtk-1.0/webkit/webkitwebplugindatabase.h -include/webkitgtk-1.0/webkit/webkitwebpolicydecision.h -include/webkitgtk-1.0/webkit/webkitwebresource.h -include/webkitgtk-1.0/webkit/webkitwebsettings.h -include/webkitgtk-1.0/webkit/webkitwebview.h -include/webkitgtk-1.0/webkit/webkitwebwindowfeatures.h -include/webkitgtk-1.0/webkit2/WebKitAuthenticationRequest.h -include/webkitgtk-1.0/webkit2/WebKitBackForwardList.h -include/webkitgtk-1.0/webkit2/WebKitBackForwardListItem.h -include/webkitgtk-1.0/webkit2/WebKitCertificateInfo.h -include/webkitgtk-1.0/webkit2/WebKitContextMenu.h -include/webkitgtk-1.0/webkit2/WebKitContextMenuActions.h -include/webkitgtk-1.0/webkit2/WebKitContextMenuItem.h -include/webkitgtk-1.0/webkit2/WebKitCookieManager.h -include/webkitgtk-1.0/webkit2/WebKitCredential.h -include/webkitgtk-1.0/webkit2/WebKitDefines.h -include/webkitgtk-1.0/webkit2/WebKitDownload.h -include/webkitgtk-1.0/webkit2/WebKitEditingCommands.h -include/webkitgtk-1.0/webkit2/WebKitEnumTypes.h -include/webkitgtk-1.0/webkit2/WebKitError.h -include/webkitgtk-1.0/webkit2/WebKitFaviconDatabase.h -include/webkitgtk-1.0/webkit2/WebKitFileChooserRequest.h -include/webkitgtk-1.0/webkit2/WebKitFindController.h -include/webkitgtk-1.0/webkit2/WebKitFormSubmissionRequest.h -include/webkitgtk-1.0/webkit2/WebKitForwardDeclarations.h -include/webkitgtk-1.0/webkit2/WebKitFrame.h -include/webkitgtk-1.0/webkit2/WebKitGeolocationPermissionRequest.h -include/webkitgtk-1.0/webkit2/WebKitHitTestResult.h -include/webkitgtk-1.0/webkit2/WebKitJavascriptResult.h -include/webkitgtk-1.0/webkit2/WebKitMimeInfo.h -include/webkitgtk-1.0/webkit2/WebKitNavigationPolicyDecision.h -include/webkitgtk-1.0/webkit2/WebKitPermissionRequest.h -include/webkitgtk-1.0/webkit2/WebKitPlugin.h -include/webkitgtk-1.0/webkit2/WebKitPolicyDecision.h -include/webkitgtk-1.0/webkit2/WebKitPrintOperation.h -include/webkitgtk-1.0/webkit2/WebKitResponsePolicyDecision.h -include/webkitgtk-1.0/webkit2/WebKitScriptDialog.h -include/webkitgtk-1.0/webkit2/WebKitScriptWorld.h -include/webkitgtk-1.0/webkit2/WebKitSecurityManager.h -include/webkitgtk-1.0/webkit2/WebKitSettings.h -include/webkitgtk-1.0/webkit2/WebKitURIRequest.h -include/webkitgtk-1.0/webkit2/WebKitURIResponse.h -include/webkitgtk-1.0/webkit2/WebKitURISchemeRequest.h -include/webkitgtk-1.0/webkit2/WebKitVersion.h -include/webkitgtk-1.0/webkit2/WebKitWebContext.h -include/webkitgtk-1.0/webkit2/WebKitWebExtension.h -include/webkitgtk-1.0/webkit2/WebKitWebInspector.h -include/webkitgtk-1.0/webkit2/WebKitWebPage.h -include/webkitgtk-1.0/webkit2/WebKitWebResource.h -include/webkitgtk-1.0/webkit2/WebKitWebView.h -include/webkitgtk-1.0/webkit2/WebKitWebViewBase.h -include/webkitgtk-1.0/webkit2/WebKitWebViewGroup.h -include/webkitgtk-1.0/webkit2/WebKitWindowProperties.h -include/webkitgtk-1.0/webkit2/webkit-web-extension.h -include/webkitgtk-1.0/webkit2/webkit2.h -include/webkitgtk-1.0/webkitdom/WebKitDOMAttr.h -include/webkitgtk-1.0/webkitdom/WebKitDOMAudioTrack.h -include/webkitgtk-1.0/webkitdom/WebKitDOMAudioTrackList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMBarProp.h -include/webkitgtk-1.0/webkitdom/WebKitDOMBatteryManager.h -include/webkitgtk-1.0/webkitdom/WebKitDOMBlob.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCDATASection.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCSSRule.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCSSRuleList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCSSStyleDeclaration.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCSSStyleSheet.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCSSValue.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCharacterData.h -include/webkitgtk-1.0/webkitdom/WebKitDOMComment.h -include/webkitgtk-1.0/webkitdom/WebKitDOMConsole.h -include/webkitgtk-1.0/webkitdom/WebKitDOMCustom.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMApplicationCache.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMImplementation.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMMimeType.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMMimeTypeArray.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMNamedFlowCollection.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMPlugin.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMPluginArray.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMSecurityPolicy.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMSelection.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMSettableTokenList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMStringList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMStringMap.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMTokenList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMWindow.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDOMWindowCSS.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDatabase.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDeprecated.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDocument.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDocumentFragment.h -include/webkitgtk-1.0/webkitdom/WebKitDOMDocumentType.h -include/webkitgtk-1.0/webkitdom/WebKitDOMElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMEntityReference.h -include/webkitgtk-1.0/webkitdom/WebKitDOMEvent.h -include/webkitgtk-1.0/webkitdom/WebKitDOMEventTarget.h -include/webkitgtk-1.0/webkitdom/WebKitDOMFile.h -include/webkitgtk-1.0/webkitdom/WebKitDOMFileList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMGamepad.h -include/webkitgtk-1.0/webkitdom/WebKitDOMGamepadList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMGeolocation.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAnchorElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAppletElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAreaElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAudioElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBRElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBaseElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBaseFontElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBodyElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLButtonElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLCanvasElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLCollection.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDListElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDetailsElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDirectoryElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDivElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDocument.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLEmbedElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFieldSetElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFontElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFormElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFrameElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFrameSetElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHRElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHeadElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHeadingElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHtmlElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLIFrameElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLImageElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLInputElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLKeygenElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLIElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLabelElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLegendElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLinkElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMapElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMarqueeElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMediaElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMenuElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMetaElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLModElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOListElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLObjectElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptGroupElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptionElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptionsCollection.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLParagraphElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLParamElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLPreElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLQuoteElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLScriptElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLSelectElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLStyleElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableCellElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableColElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableRowElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableSectionElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTextAreaElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTitleElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLUListElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHTMLVideoElement.h -include/webkitgtk-1.0/webkitdom/WebKitDOMHistory.h -include/webkitgtk-1.0/webkitdom/WebKitDOMKeyboardEvent.h -include/webkitgtk-1.0/webkitdom/WebKitDOMLocation.h -include/webkitgtk-1.0/webkitdom/WebKitDOMMediaController.h -include/webkitgtk-1.0/webkitdom/WebKitDOMMediaError.h -include/webkitgtk-1.0/webkitdom/WebKitDOMMediaList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMMediaQueryList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMMessagePort.h -include/webkitgtk-1.0/webkitdom/WebKitDOMMouseEvent.h -include/webkitgtk-1.0/webkitdom/WebKitDOMNamedNodeMap.h -include/webkitgtk-1.0/webkitdom/WebKitDOMNavigator.h -include/webkitgtk-1.0/webkitdom/WebKitDOMNode.h -include/webkitgtk-1.0/webkitdom/WebKitDOMNodeFilter.h -include/webkitgtk-1.0/webkitdom/WebKitDOMNodeIterator.h -include/webkitgtk-1.0/webkitdom/WebKitDOMNodeList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMObject.h -include/webkitgtk-1.0/webkitdom/WebKitDOMPerformance.h -include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceEntry.h -include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceEntryList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceNavigation.h -include/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceTiming.h -include/webkitgtk-1.0/webkitdom/WebKitDOMProcessingInstruction.h -include/webkitgtk-1.0/webkitdom/WebKitDOMRange.h -include/webkitgtk-1.0/webkitdom/WebKitDOMScreen.h -include/webkitgtk-1.0/webkitdom/WebKitDOMShadowRoot.h -include/webkitgtk-1.0/webkitdom/WebKitDOMStorage.h -include/webkitgtk-1.0/webkitdom/WebKitDOMStorageInfo.h -include/webkitgtk-1.0/webkitdom/WebKitDOMStorageQuota.h -include/webkitgtk-1.0/webkitdom/WebKitDOMStyleMedia.h -include/webkitgtk-1.0/webkitdom/WebKitDOMStyleSheet.h -include/webkitgtk-1.0/webkitdom/WebKitDOMStyleSheetList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMText.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrack.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackCue.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackCueList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTimeRanges.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTouch.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTrackEvent.h -include/webkitgtk-1.0/webkitdom/WebKitDOMTreeWalker.h -include/webkitgtk-1.0/webkitdom/WebKitDOMUIEvent.h -include/webkitgtk-1.0/webkitdom/WebKitDOMValidityState.h -include/webkitgtk-1.0/webkitdom/WebKitDOMVideoPlaybackQuality.h -include/webkitgtk-1.0/webkitdom/WebKitDOMVideoTrack.h -include/webkitgtk-1.0/webkitdom/WebKitDOMVideoTrackList.h -include/webkitgtk-1.0/webkitdom/WebKitDOMWebKitNamedFlow.h -include/webkitgtk-1.0/webkitdom/WebKitDOMWebKitPoint.h -include/webkitgtk-1.0/webkitdom/WebKitDOMWheelEvent.h -include/webkitgtk-1.0/webkitdom/WebKitDOMXPathExpression.h -include/webkitgtk-1.0/webkitdom/WebKitDOMXPathNSResolver.h -include/webkitgtk-1.0/webkitdom/WebKitDOMXPathResult.h -include/webkitgtk-1.0/webkitdom/webkitdom.h -include/webkitgtk-1.0/webkitdom/webkitdomdefines.h -lib/girepository-1.0/JavaScriptCore-1.0.typelib -lib/girepository-1.0/WebKit-1.0.typelib -lib/libjavascriptcoregtk-1.0.la -lib/libwebkitgtk-1.0.la -lib/pkgconfig/javascriptcoregtk-1.0.pc -lib/pkgconfig/webkit-1.0.pc -share/gir-1.0/JavaScriptCore-1.0.gir -share/gir-1.0/WebKit-1.0.gir -share/gtk-doc/html/webkitdomgtk/WebKitDOMAttr.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMAudioTrack.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMAudioTrackList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMBarProp.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMBatteryManager.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMBlob.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMCDATASection.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSRule.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSRuleList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSStyleDeclaration.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSStyleSheet.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMCSSValue.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMCharacterData.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMComment.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMConsole.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMApplicationCache.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMImplementation.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMMimeType.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMMimeTypeArray.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMNamedFlowCollection.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMPlugin.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMPluginArray.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMSecurityPolicy.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMSelection.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMSettableTokenList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMStringList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMStringMap.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMTokenList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMWindow.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDOMWindowCSS.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDatabase.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDocument.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDocumentFragment.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMDocumentType.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMEntityReference.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMEvent.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMEventTarget.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMFile.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMFileList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMGamepad.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMGamepadList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMGeolocation.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAnchorElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAppletElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAreaElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLAudioElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBRElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBaseElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBaseFontElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLBodyElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLButtonElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLCanvasElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLCollection.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDListElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDetailsElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDirectoryElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDivElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLDocument.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLEmbedElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFieldSetElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFontElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFormElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFrameElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLFrameSetElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHRElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHeadElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHeadingElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLHtmlElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLIFrameElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLImageElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLInputElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLKeygenElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLIElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLabelElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLegendElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLLinkElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMapElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMarqueeElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMediaElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMenuElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLMetaElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLModElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOListElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLObjectElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOptGroupElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOptionElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLOptionsCollection.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLParagraphElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLParamElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLPreElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLQuoteElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLScriptElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLSelectElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLStyleElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableCaptionElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableCellElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableColElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableRowElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTableSectionElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTextAreaElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLTitleElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLUListElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHTMLVideoElement.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMHistory.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMKeyboardEvent.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMLocation.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaController.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaError.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMMediaQueryList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMMessagePort.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMMouseEvent.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMNamedNodeMap.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMNavigator.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMNode.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMNodeFilter.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMNodeIterator.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMNodeList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMObject.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformance.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceEntry.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceEntryList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceNavigation.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMPerformanceTiming.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMProcessingInstruction.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMRange.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMScreen.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMShadowRoot.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMStorage.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMStorageInfo.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMStorageQuota.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMStyleMedia.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMStyleSheet.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMStyleSheetList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMText.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrack.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrackCue.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrackCueList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTextTrackList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTimeRanges.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTouch.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTrackEvent.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMTreeWalker.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMUIEvent.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMValidityState.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMVideoPlaybackQuality.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMVideoTrack.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMVideoTrackList.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMWebKitNamedFlow.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMWebKitPoint.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMWheelEvent.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMXPathExpression.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMXPathNSResolver.html -share/gtk-doc/html/webkitdomgtk/WebKitDOMXPathResult.html -share/gtk-doc/html/webkitdomgtk/annotation-glossary.html -share/gtk-doc/html/webkitdomgtk/api-index-deprecated.html -share/gtk-doc/html/webkitdomgtk/ch01.html -share/gtk-doc/html/webkitdomgtk/home.png -share/gtk-doc/html/webkitdomgtk/index-all.html -share/gtk-doc/html/webkitdomgtk/index.html -share/gtk-doc/html/webkitdomgtk/index.sgml -share/gtk-doc/html/webkitdomgtk/left-insensitive.png -share/gtk-doc/html/webkitdomgtk/left.png -share/gtk-doc/html/webkitdomgtk/right-insensitive.png -share/gtk-doc/html/webkitdomgtk/right.png -share/gtk-doc/html/webkitdomgtk/style.css -share/gtk-doc/html/webkitdomgtk/up-insensitive.png -share/gtk-doc/html/webkitdomgtk/up.png -share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMBarInfo.html -share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMCustom.html -share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMHTMLPropertiesCollection.html -share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMMemoryInfo.html -share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMMicroDataItemValue.html -share/gtk-doc/html/webkitdomgtk/webkitdomgtk-WebKitDOMPropertyNodeList.html -share/gtk-doc/html/webkitdomgtk/webkitdomgtk.devhelp2 -share/gtk-doc/html/webkitgtk/WebKitFaviconDatabase.html -share/gtk-doc/html/webkitgtk/WebKitFileChooserRequest.html -share/gtk-doc/html/webkitgtk/WebKitGeolocationPolicyDecision.html -share/gtk-doc/html/webkitgtk/WebKitHitTestResult.html -share/gtk-doc/html/webkitgtk/WebKitIconDatabase.html -share/gtk-doc/html/webkitgtk/WebKitNetworkRequest.html -share/gtk-doc/html/webkitgtk/WebKitNetworkResponse.html -share/gtk-doc/html/webkitgtk/WebKitSecurityOrigin.html -share/gtk-doc/html/webkitgtk/WebKitSoupAuthDialog.html -share/gtk-doc/html/webkitgtk/WebKitSpellChecker.html -share/gtk-doc/html/webkitgtk/WebKitViewportAttributes.html -share/gtk-doc/html/webkitgtk/WebKitWebBackForwardList.html -share/gtk-doc/html/webkitgtk/WebKitWebDataSource.html -share/gtk-doc/html/webkitgtk/WebKitWebDatabase.html -share/gtk-doc/html/webkitgtk/WebKitWebFrame.html -share/gtk-doc/html/webkitgtk/WebKitWebHistoryItem.html -share/gtk-doc/html/webkitgtk/WebKitWebInspector.html -share/gtk-doc/html/webkitgtk/WebKitWebNavigationAction.html -share/gtk-doc/html/webkitgtk/WebKitWebPlugin.html -share/gtk-doc/html/webkitgtk/WebKitWebPluginDatabase.html -share/gtk-doc/html/webkitgtk/WebKitWebPolicyDecision.html -share/gtk-doc/html/webkitgtk/WebKitWebResource.html -share/gtk-doc/html/webkitgtk/WebKitWebSettings.html -share/gtk-doc/html/webkitgtk/WebKitWebWindowFeatures.html -share/gtk-doc/html/webkitgtk/annotation-glossary.html -share/gtk-doc/html/webkitgtk/ch01.html -share/gtk-doc/html/webkitgtk/ch02.html -share/gtk-doc/html/webkitgtk/ch03.html -share/gtk-doc/html/webkitgtk/home.png -share/gtk-doc/html/webkitgtk/index-1.0.1.html -share/gtk-doc/html/webkitgtk/index-1.0.2.html -share/gtk-doc/html/webkitgtk/index-1.0.3.html -share/gtk-doc/html/webkitgtk/index-1.1.1.html -share/gtk-doc/html/webkitgtk/index-1.1.10.html -share/gtk-doc/html/webkitgtk/index-1.1.11.html -share/gtk-doc/html/webkitgtk/index-1.1.13.html -share/gtk-doc/html/webkitgtk/index-1.1.14.html -share/gtk-doc/html/webkitgtk/index-1.1.15.html -share/gtk-doc/html/webkitgtk/index-1.1.16.html -share/gtk-doc/html/webkitgtk/index-1.1.17.html -share/gtk-doc/html/webkitgtk/index-1.1.18.html -share/gtk-doc/html/webkitgtk/index-1.1.2.html -share/gtk-doc/html/webkitgtk/index-1.1.20.html -share/gtk-doc/html/webkitgtk/index-1.1.23.html -share/gtk-doc/html/webkitgtk/index-1.1.3.html -share/gtk-doc/html/webkitgtk/index-1.1.4.html -share/gtk-doc/html/webkitgtk/index-1.1.5.html -share/gtk-doc/html/webkitgtk/index-1.1.6.html -share/gtk-doc/html/webkitgtk/index-1.1.7.html -share/gtk-doc/html/webkitgtk/index-1.1.8.html -share/gtk-doc/html/webkitgtk/index-1.3.1.html -share/gtk-doc/html/webkitgtk/index-1.3.2.html -share/gtk-doc/html/webkitgtk/index-1.3.3.html -share/gtk-doc/html/webkitgtk/index-1.3.4.html -share/gtk-doc/html/webkitgtk/index-1.3.8.html -share/gtk-doc/html/webkitgtk/index-all.html -share/gtk-doc/html/webkitgtk/index-deprecated.html -share/gtk-doc/html/webkitgtk/index.html -share/gtk-doc/html/webkitgtk/index.sgml -share/gtk-doc/html/webkitgtk/left-insensitive.png -share/gtk-doc/html/webkitgtk/left.png -share/gtk-doc/html/webkitgtk/right-insensitive.png -share/gtk-doc/html/webkitgtk/right.png -share/gtk-doc/html/webkitgtk/style.css -share/gtk-doc/html/webkitgtk/up-insensitive.png -share/gtk-doc/html/webkitgtk/up.png -share/gtk-doc/html/webkitgtk/webkit-environment.html -share/gtk-doc/html/webkitgtk/webkitgtk-Global-functions.html -share/gtk-doc/html/webkitgtk/webkitgtk-webkitdownload.html -share/gtk-doc/html/webkitgtk/webkitgtk-webkitwebview.html -share/gtk-doc/html/webkitgtk/webkitgtk.devhelp2 -share/locale/ar/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/as/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/bg/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/cs/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/de/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/el/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/en_CA/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/en_GB/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/eo/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/es/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/et/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/eu/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/fr/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/gl/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/gu/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/he/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/hi/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/hu/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/id/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/it/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/kn/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/ko/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/lt/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/lv/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/ml/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/mr/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/nb/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/nl/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/or/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/pa/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/pl/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/pt/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/pt_BR/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/ro/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/ru/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/sl/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/sr/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/sr@latin/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/sv/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/ta/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/te/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/uk/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/vi/LC_MESSAGES/WebKitGTK-2.0.mo -share/locale/zh_CN/LC_MESSAGES/WebKitGTK-2.0.mo -share/webkitgtk-1.0/images/deleteButton.png -share/webkitgtk-1.0/images/inputSpeech.png -share/webkitgtk-1.0/images/missingImage.png -share/webkitgtk-1.0/images/nullPlugin.png -share/webkitgtk-1.0/images/panIcon.png -share/webkitgtk-1.0/images/textAreaResizeCorner.png -share/webkitgtk-1.0/images/urlIcon.png -share/webkitgtk-1.0/resources/audio/Composite.wav -share/webkitgtk-1.0/resources/error.html +@comment $NetBSD: PLIST,v 1.23 2015/07/12 00:44:46 wiz Exp $ +bin/MiniBrowser +bin/jsc +include/webkitgtk-4.0/JavaScriptCore/JSBase.h +include/webkitgtk-4.0/JavaScriptCore/JSContextRef.h +include/webkitgtk-4.0/JavaScriptCore/JSObjectRef.h +include/webkitgtk-4.0/JavaScriptCore/JSStringRef.h +include/webkitgtk-4.0/JavaScriptCore/JSValueRef.h +include/webkitgtk-4.0/JavaScriptCore/JavaScript.h +include/webkitgtk-4.0/JavaScriptCore/WebKitAvailability.h +include/webkitgtk-4.0/webkit2/WebKitAuthenticationRequest.h +include/webkitgtk-4.0/webkit2/WebKitBackForwardList.h +include/webkitgtk-4.0/webkit2/WebKitBackForwardListItem.h +include/webkitgtk-4.0/webkit2/WebKitColorChooserRequest.h +include/webkitgtk-4.0/webkit2/WebKitContextMenu.h +include/webkitgtk-4.0/webkit2/WebKitContextMenuActions.h +include/webkitgtk-4.0/webkit2/WebKitContextMenuItem.h +include/webkitgtk-4.0/webkit2/WebKitCookieManager.h +include/webkitgtk-4.0/webkit2/WebKitCredential.h +include/webkitgtk-4.0/webkit2/WebKitDefines.h +include/webkitgtk-4.0/webkit2/WebKitDownload.h +include/webkitgtk-4.0/webkit2/WebKitEditingCommands.h +include/webkitgtk-4.0/webkit2/WebKitEnumTypes.h +include/webkitgtk-4.0/webkit2/WebKitError.h +include/webkitgtk-4.0/webkit2/WebKitFaviconDatabase.h +include/webkitgtk-4.0/webkit2/WebKitFileChooserRequest.h +include/webkitgtk-4.0/webkit2/WebKitFindController.h +include/webkitgtk-4.0/webkit2/WebKitFormSubmissionRequest.h +include/webkitgtk-4.0/webkit2/WebKitForwardDeclarations.h +include/webkitgtk-4.0/webkit2/WebKitFrame.h +include/webkitgtk-4.0/webkit2/WebKitGeolocationPermissionRequest.h +include/webkitgtk-4.0/webkit2/WebKitHitTestResult.h +include/webkitgtk-4.0/webkit2/WebKitJavascriptResult.h +include/webkitgtk-4.0/webkit2/WebKitMimeInfo.h +include/webkitgtk-4.0/webkit2/WebKitNavigationAction.h +include/webkitgtk-4.0/webkit2/WebKitNavigationPolicyDecision.h +include/webkitgtk-4.0/webkit2/WebKitNotification.h +include/webkitgtk-4.0/webkit2/WebKitNotificationPermissionRequest.h +include/webkitgtk-4.0/webkit2/WebKitPermissionRequest.h +include/webkitgtk-4.0/webkit2/WebKitPlugin.h +include/webkitgtk-4.0/webkit2/WebKitPolicyDecision.h +include/webkitgtk-4.0/webkit2/WebKitPrintOperation.h +include/webkitgtk-4.0/webkit2/WebKitResponsePolicyDecision.h +include/webkitgtk-4.0/webkit2/WebKitScriptDialog.h +include/webkitgtk-4.0/webkit2/WebKitScriptWorld.h +include/webkitgtk-4.0/webkit2/WebKitSecurityManager.h +include/webkitgtk-4.0/webkit2/WebKitSettings.h +include/webkitgtk-4.0/webkit2/WebKitURIRequest.h +include/webkitgtk-4.0/webkit2/WebKitURIResponse.h +include/webkitgtk-4.0/webkit2/WebKitURISchemeRequest.h +include/webkitgtk-4.0/webkit2/WebKitUserContent.h +include/webkitgtk-4.0/webkit2/WebKitUserContentManager.h +include/webkitgtk-4.0/webkit2/WebKitUserMediaPermissionRequest.h +include/webkitgtk-4.0/webkit2/WebKitVersion.h +include/webkitgtk-4.0/webkit2/WebKitWebContext.h +include/webkitgtk-4.0/webkit2/WebKitWebExtension.h +include/webkitgtk-4.0/webkit2/WebKitWebHitTestResult.h +include/webkitgtk-4.0/webkit2/WebKitWebInspector.h +include/webkitgtk-4.0/webkit2/WebKitWebPage.h +include/webkitgtk-4.0/webkit2/WebKitWebResource.h +include/webkitgtk-4.0/webkit2/WebKitWebView.h +include/webkitgtk-4.0/webkit2/WebKitWebViewBase.h +include/webkitgtk-4.0/webkit2/WebKitWindowProperties.h +include/webkitgtk-4.0/webkit2/webkit-web-extension.h +include/webkitgtk-4.0/webkit2/webkit2.h +include/webkitgtk-4.0/webkitdom/WebKitDOMAttr.h +include/webkitgtk-4.0/webkitdom/WebKitDOMAttrUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMAudioTrack.h +include/webkitgtk-4.0/webkitdom/WebKitDOMAudioTrackList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMBarProp.h +include/webkitgtk-4.0/webkitdom/WebKitDOMBatteryManager.h +include/webkitgtk-4.0/webkitdom/WebKitDOMBlob.h +include/webkitgtk-4.0/webkitdom/WebKitDOMBlobUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCDATASection.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCSSRule.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCSSRuleList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCSSRuleUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCSSStyleDeclaration.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCSSStyleSheet.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCSSValue.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCharacterData.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCharacterDataUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMComment.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCustom.h +include/webkitgtk-4.0/webkitdom/WebKitDOMCustomUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMApplicationCache.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMImplementation.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMMimeType.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMMimeTypeArray.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMNamedFlowCollection.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMPlugin.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMPluginArray.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMSecurityPolicy.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMSelection.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMSettableTokenList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMStringList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMStringMap.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMTokenList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindow.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindowCSS.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindowSpeechSynthesis.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindowUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDataCue.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDatabase.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDeprecated.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDocument.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentFragment.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentFragmentUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentType.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentTypeUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMEntityReference.h +include/webkitgtk-4.0/webkitdom/WebKitDOMEvent.h +include/webkitgtk-4.0/webkitdom/WebKitDOMEventTarget.h +include/webkitgtk-4.0/webkitdom/WebKitDOMEventUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMFile.h +include/webkitgtk-4.0/webkitdom/WebKitDOMFileList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMGamepad.h +include/webkitgtk-4.0/webkitdom/WebKitDOMGamepadList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMGeolocation.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAnchorElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAnchorElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAppletElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAreaElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAreaElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAudioElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBRElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBaseElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBaseFontElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBodyElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLButtonElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLButtonElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLCanvasElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLCollection.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDListElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDetailsElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDirectoryElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDivElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDocument.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLEmbedElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFieldSetElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFieldSetElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFontElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFormElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFormElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFrameElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFrameSetElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHRElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHeadElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHeadingElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHtmlElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHtmlElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLIFrameElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLIFrameElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLImageElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLImageElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLInputElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLInputElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLKeygenElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLIElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLabelElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLabelElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLegendElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLinkElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLinkElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMapElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMarqueeElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMarqueeElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMediaElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMenuElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMetaElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLModElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOListElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOListElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLObjectElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLObjectElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptGroupElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptionElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptionsCollection.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptionsCollectionUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLParagraphElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLParamElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLPreElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLQuoteElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLScriptElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLScriptElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLSelectElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLSelectElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLStyleElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableCellElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableColElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableRowElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableSectionElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTextAreaElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTextAreaElementUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTitleElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLUListElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLVideoElement.h +include/webkitgtk-4.0/webkitdom/WebKitDOMHistory.h +include/webkitgtk-4.0/webkitdom/WebKitDOMKeyboardEvent.h +include/webkitgtk-4.0/webkitdom/WebKitDOMLocation.h +include/webkitgtk-4.0/webkitdom/WebKitDOMMediaController.h +include/webkitgtk-4.0/webkitdom/WebKitDOMMediaError.h +include/webkitgtk-4.0/webkitdom/WebKitDOMMediaList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMMediaQueryList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMMessagePort.h +include/webkitgtk-4.0/webkitdom/WebKitDOMMouseEvent.h +include/webkitgtk-4.0/webkitdom/WebKitDOMMouseEventUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMNamedNodeMap.h +include/webkitgtk-4.0/webkitdom/WebKitDOMNavigator.h +include/webkitgtk-4.0/webkitdom/WebKitDOMNode.h +include/webkitgtk-4.0/webkitdom/WebKitDOMNodeFilter.h +include/webkitgtk-4.0/webkitdom/WebKitDOMNodeIterator.h +include/webkitgtk-4.0/webkitdom/WebKitDOMNodeList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMNodeUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMObject.h +include/webkitgtk-4.0/webkitdom/WebKitDOMPerformance.h +include/webkitgtk-4.0/webkitdom/WebKitDOMPerformanceEntry.h +include/webkitgtk-4.0/webkitdom/WebKitDOMPerformanceEntryList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMPerformanceNavigation.h +include/webkitgtk-4.0/webkitdom/WebKitDOMPerformanceTiming.h +include/webkitgtk-4.0/webkitdom/WebKitDOMProcessingInstruction.h +include/webkitgtk-4.0/webkitdom/WebKitDOMRange.h +include/webkitgtk-4.0/webkitdom/WebKitDOMRangeUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMScreen.h +include/webkitgtk-4.0/webkitdom/WebKitDOMSpeechSynthesis.h +include/webkitgtk-4.0/webkitdom/WebKitDOMSpeechSynthesisEvent.h +include/webkitgtk-4.0/webkitdom/WebKitDOMSpeechSynthesisUtterance.h +include/webkitgtk-4.0/webkitdom/WebKitDOMSpeechSynthesisVoice.h +include/webkitgtk-4.0/webkitdom/WebKitDOMStorage.h +include/webkitgtk-4.0/webkitdom/WebKitDOMStorageInfo.h +include/webkitgtk-4.0/webkitdom/WebKitDOMStorageQuota.h +include/webkitgtk-4.0/webkitdom/WebKitDOMStyleMedia.h +include/webkitgtk-4.0/webkitdom/WebKitDOMStyleSheet.h +include/webkitgtk-4.0/webkitdom/WebKitDOMStyleSheetList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMText.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTextTrack.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTextTrackCue.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTextTrackCueList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTextTrackList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTimeRanges.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTouch.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTrackEvent.h +include/webkitgtk-4.0/webkitdom/WebKitDOMTreeWalker.h +include/webkitgtk-4.0/webkitdom/WebKitDOMUIEvent.h +include/webkitgtk-4.0/webkitdom/WebKitDOMUIEventUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMUserMessageHandler.h +include/webkitgtk-4.0/webkitdom/WebKitDOMUserMessageHandlersNamespace.h +include/webkitgtk-4.0/webkitdom/WebKitDOMVTTCue.h +include/webkitgtk-4.0/webkitdom/WebKitDOMValidityState.h +include/webkitgtk-4.0/webkitdom/WebKitDOMVideoPlaybackQuality.h +include/webkitgtk-4.0/webkitdom/WebKitDOMVideoTrack.h +include/webkitgtk-4.0/webkitdom/WebKitDOMVideoTrackList.h +include/webkitgtk-4.0/webkitdom/WebKitDOMWebKitNamedFlow.h +include/webkitgtk-4.0/webkitdom/WebKitDOMWebKitNamespace.h +include/webkitgtk-4.0/webkitdom/WebKitDOMWebKitPoint.h +include/webkitgtk-4.0/webkitdom/WebKitDOMWheelEvent.h +include/webkitgtk-4.0/webkitdom/WebKitDOMWheelEventUnstable.h +include/webkitgtk-4.0/webkitdom/WebKitDOMXPathExpression.h +include/webkitgtk-4.0/webkitdom/WebKitDOMXPathNSResolver.h +include/webkitgtk-4.0/webkitdom/WebKitDOMXPathResult.h +include/webkitgtk-4.0/webkitdom/webkitdom.h +include/webkitgtk-4.0/webkitdom/webkitdomdefines-unstable.h +include/webkitgtk-4.0/webkitdom/webkitdomdefines.h +lib/girepository-1.0/JavaScriptCore-4.0.typelib +lib/girepository-1.0/WebKit2-4.0.typelib +lib/girepository-1.0/WebKit2WebExtension-4.0.typelib +lib/libjavascriptcoregtk-4.0.so +lib/libjavascriptcoregtk-4.0.so.18 +lib/libjavascriptcoregtk-4.0.so.18.1.8 +lib/libwebkit2gtk-4.0.so +lib/libwebkit2gtk-4.0.so.37 +lib/libwebkit2gtk-4.0.so.37.6.4 +lib/pkgconfig/javascriptcoregtk-4.0.pc +lib/pkgconfig/webkit2gtk-4.0.pc +lib/pkgconfig/webkit2gtk-web-extension-4.0.pc +lib/webkit2gtk-4.0/injected-bundle/libwebkit2gtkinjectedbundle.so +libexec/webkit2gtk-4.0/WebKitNetworkProcess +libexec/webkit2gtk-4.0/WebKitPluginProcess +libexec/webkit2gtk-4.0/WebKitPluginProcess2 +libexec/webkit2gtk-4.0/WebKitWebProcess +share/gir-1.0/JavaScriptCore-4.0.gir +share/gir-1.0/WebKit2-4.0.gir +share/gir-1.0/WebKit2WebExtension-4.0.gir +share/locale/ar/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/as/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/bg/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/cs/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/de/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/el/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/en_CA/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/en_GB/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/eo/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/es/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/et/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/eu/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/fr/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/gl/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/gu/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/he/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/hi/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/hu/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/id/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/it/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/ja/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/kn/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/ko/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/lt/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/lv/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/ml/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/mr/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/nb/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/nl/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/or/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/pa/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/pl/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/pt/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/pt_BR/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/ro/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/ru/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/sl/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/sr/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/sr@latin/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/sv/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/ta/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/te/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/uk/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/vi/LC_MESSAGES/WebKit2GTK-4.0.mo +share/locale/zh_CN/LC_MESSAGES/WebKit2GTK-4.0.mo diff --git a/www/webkit-gtk/buildlink3.mk b/www/webkit-gtk/buildlink3.mk index e094a391d31..ed57a119814 100644 --- a/www/webkit-gtk/buildlink3.mk +++ b/www/webkit-gtk/buildlink3.mk @@ -1,19 +1,13 @@ -# $NetBSD: buildlink3.mk,v 1.48 2015/06/17 02:48:46 dsainty Exp $ +# $NetBSD: buildlink3.mk,v 1.49 2015/07/12 00:44:46 wiz Exp $ BUILDLINK_TREE+= webkit-gtk .if !defined(WEBKIT_GTK_BUILDLINK3_MK) WEBKIT_GTK_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.webkit-gtk+= webkit-gtk>=2.0 -BUILDLINK_ABI_DEPENDS.webkit-gtk?= webkit-gtk>=2.4.8nb2 +BUILDLINK_API_DEPENDS.webkit-gtk+= webkit-gtk>=2.8 BUILDLINK_PKGSRCDIR.webkit-gtk?= ../../www/webkit-gtk -# Linking with this library may require newer libstdc++ features than are -# available under the native compiler, so possibly upgrade the compiler -# used by dependent packages too. -GCC_REQD+= 4.8 - pkgbase := webkit-gtk .include "../../mk/pkg-build-options.mk" @@ -34,6 +28,7 @@ pkgbase := webkit-gtk .include "../../textproc/icu/buildlink3.mk" .include "../../textproc/libxslt/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" +.include "../../x11/gtk3/buildlink3.mk" .include "../../x11/libXdamage/buildlink3.mk" .include "../../x11/libXt/buildlink3.mk" .endif # WEBKIT_GTK_BUILDLINK3_MK diff --git a/www/webkit-gtk/distinfo b/www/webkit-gtk/distinfo index d96597f3629..751ffaf298f 100644 --- a/www/webkit-gtk/distinfo +++ b/www/webkit-gtk/distinfo @@ -1,21 +1,16 @@ -$NetBSD: distinfo,v 1.75 2015/05/28 05:30:51 wiz Exp $ +$NetBSD: distinfo,v 1.76 2015/07/12 00:44:46 wiz Exp $ -SHA1 (webkitgtk-2.4.9.tar.xz) = fbe02db8a4f01a70e7cdf0d16f8a18463e18b104 -RMD160 (webkitgtk-2.4.9.tar.xz) = 122468435539d69665d5206ae266fb36ff2d86c2 -Size (webkitgtk-2.4.9.tar.xz) = 9840740 bytes -SHA1 (patch-Source_JavaScriptCore_ForwardingHeaders_JavaScriptCore_JSCallbackFunction.h) = 79122450435eb12a57086d18e5410eec131c33b2 -SHA1 (patch-Source_JavaScriptCore_assembler_ARMAssembler.h) = 2ff343ac53b14af0692754a44059e7d2ea969b96 -SHA1 (patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp) = 69221390dd5fdac55abf341c5ae3a03267e38ae6 -SHA1 (patch-Source_JavaScriptCore_dfg_DFGNode.h) = fdd31fcf6c745394499570397c82fe3dfce02e1d -SHA1 (patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp) = 67f66ca254f958c0650249485a64982b40f92621 +SHA1 (webkitgtk-2.8.1.tar.xz) = 56dc2d15e86829d0854ddf29cd841ee83fce30a2 +RMD160 (webkitgtk-2.8.1.tar.xz) = c8ec5815fda1948b38538101e333d64d9cbb8ea0 +Size (webkitgtk-2.8.1.tar.xz) = 10435512 bytes +SHA1 (patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp) = 1f4a4be3593f9aa9ae6b41a2be8ae9d8bb27dcbb +SHA1 (patch-Source_JavaScriptCore_dfg_DFGNode.h) = 2b7e69b8e6aff9bd5f65190f8eb1afdbb993857f SHA1 (patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h) = f1eee7f9d3012edee1915234c837cff820f97092 -SHA1 (patch-Source_WTF_wtf_MathExtras.h) = bce39efce126793c2a33ab99224ca44860273a5b -SHA1 (patch-Source_WTF_wtf_Platform.h) = 6471907359806a180df3e2082b0e54109cb40955 -SHA1 (patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp) = 2835657e04cdbc0cc7be8a6793061f0b98f84224 -SHA1 (patch-Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp) = 6d3b9ee1559a18c17229698e44246f13c77278c9 -SHA1 (patch-Tools_DumpRenderTree_gtk_DumpRenderTree.cpp) = 994d1671ff2d8e3a961b9b7ed34f69215ed46f91 -SHA1 (patch-ai) = 8e174c68e4ba06fdd6edd64fd6df3328faf9055f -SHA1 (patch-aj) = d35a4b26e2104cdf7f3be81b020aabb4779dfaad -SHA1 (patch-ak) = 477fd5c05abee8f47842a6ad5aba00e3e4628c45 -SHA1 (patch-am) = e0a350feb14d739010000e3887971bd535a647a7 -SHA1 (patch-configure) = 19f28160d9da63d98dac4eadbb30f5e8250ffcbe +SHA1 (patch-Source_WTF_wtf_MathExtras.h) = 925d653feaa204b5128d389959328cdf559f26d3 +SHA1 (patch-Source_WTF_wtf_Platform.h) = 6ac3e1263fdacc8677b2a4e98310f3886d1dbadf +SHA1 (patch-Source_WTF_wtf_Stopwatch.h) = 25bc1552a10a5724cbf261d05c0202c153fd69f7 +SHA1 (patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp) = 3707a87994d941d5f147f797d7d0be1b45bea591 +SHA1 (patch-Source_cmake_OptionsGTK.cmake) = 599ed6188b632e78774fd833e3ea9e1a1acf8a2d +SHA1 (patch-ai) = 4b02898c650564fbf7b586652a13a1775a4d4748 +SHA1 (patch-aj) = 84b0928c17460848fb51f255f6f68057ef768574 +SHA1 (patch-am) = 2061b7a88fe019d21f7eba8a69a16f5f74810666 diff --git a/www/webkit-gtk/options.mk b/www/webkit-gtk/options.mk index 4d3eaa6bf7e..b9e117d4c1b 100644 --- a/www/webkit-gtk/options.mk +++ b/www/webkit-gtk/options.mk @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.8 2015/03/31 15:55:44 joerg Exp $ +# $NetBSD: options.mk,v 1.9 2015/07/12 00:44:46 wiz Exp $ # PKG_OPTIONS_VAR= PKG_OPTIONS.webkit-gtk -PKG_SUPPORTED_OPTIONS= debug enchant opengl webkit-jit +PKG_SUPPORTED_OPTIONS= enchant opengl webkit-jit PKG_SUGGESTED_OPTIONS= enchant opengl .include "../../mk/bsd.prefs.mk" @@ -24,20 +24,11 @@ PKG_SUGGESTED_OPTIONS+= webkit-jit # JIT support # .if !empty(PKG_OPTIONS:Mwebkit-jit) -CONFIGURE_ARGS+= --enable-jit +CMAKE_ARGS+= -DENABLE_JIT=ON +CMAKE_ARGS+= -DENABLE_LLINT_C_LOOP=ON .else -CONFIGURE_ARGS+= --disable-jit -.endif - -# -# debug support -# -.if !empty(PKG_OPTIONS:Mdebug) -CONFIGURE_ARGS+= --enable-debug \ - --disable-optimizations -.else -CONFIGURE_ARGS+= --disable-debug \ - --enable-optimizations +CMAKE_ARGS+= -DENABLE_JIT=OFF +CMAKE_ARGS+= -DENABLE_LLINT_C_LOOP=OFF .endif # @@ -46,21 +37,19 @@ CONFIGURE_ARGS+= --disable-debug \ # TODO: should we split them in multiple options? # .if !empty(PKG_OPTIONS:Mopengl) -CONFIGURE_ARGS+= --enable-glx -CONFIGURE_ARGS+= --enable-webgl -CONFIGURE_ARGS+= --enable-accelerated-compositing +CMAKE_ARGS+= -DENABLE_3D_RENDERING=ON +CMAKE_ARGS+= -DENABLE_WEBGL=ON .else -CONFIGURE_ARGS+= --disable-glx -CONFIGURE_ARGS+= --disable-webgl -CONFIGURE_ARGS+= --disable-accelerated-compositing +CMAKE_ARGS+= -DENABLE_3D_RENDERING=OFF +CMAKE_ARGS+= -DENABLE_WEBGL=OFF .endif # # Spellcheck support using enchant # .if !empty(PKG_OPTIONS:Menchant) -CONFIGURE_ARGS+= --enable-spellcheck +CMAKE_ARGS+= -DENABLE_SPELLCHECK=ON .include "../../textproc/enchant/buildlink3.mk" .else -CONFIGURE_ARGS+= --disable-spellcheck +CMAKE_ARGS+= -DENABLE_SPELLCHECK=OFF .endif diff --git a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_ForwardingHeaders_JavaScriptCore_JSCallbackFunction.h b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_ForwardingHeaders_JavaScriptCore_JSCallbackFunction.h deleted file mode 100644 index 2a91867f28d..00000000000 --- a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_ForwardingHeaders_JavaScriptCore_JSCallbackFunction.h +++ /dev/null @@ -1,6 +0,0 @@ -$NetBSD: patch-Source_JavaScriptCore_ForwardingHeaders_JavaScriptCore_JSCallbackFunction.h,v 1.1 2014/08/21 04:51:08 dbj Exp $ - ---- /dev/null -+++ Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSCallbackFunction.h -@@ -0,0 +1 @@ -+#include <JavaScriptCore/API/JSCallbackFunction.h> diff --git a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_assembler_ARMAssembler.h b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_assembler_ARMAssembler.h deleted file mode 100644 index 9bc902e5f07..00000000000 --- a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_assembler_ARMAssembler.h +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-Source_JavaScriptCore_assembler_ARMAssembler.h,v 1.3 2014/11/27 13:47:03 jmcneill Exp $ - ---- Source/JavaScriptCore/assembler/ARMAssembler.h.orig 2014-10-21 08:06:38.000000000 +0000 -+++ Source/JavaScriptCore/assembler/ARMAssembler.h -@@ -1121,6 +1121,9 @@ namespace JSC { - linuxPageFlush(current, end); - #elif OS(WINCE) - CacheRangeFlush(code, size, CACHE_SYNC_ALL); -+#elif OS(NETBSD) -+ char* begin = reinterpret_cast<char*>(code); -+ __builtin___clear_cache(begin, begin + size); - #else - #error "The cacheFlush support is missing on this platform." - #endif diff --git a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp index dcc74b391fa..4f77dcc1928 100644 --- a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp +++ b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp @@ -1,8 +1,8 @@ -$NetBSD: patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp,v 1.2 2014/08/03 22:30:05 wiz Exp $ +$NetBSD: patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp,v 1.3 2015/07/12 00:44:46 wiz Exp $ ---- Source/JavaScriptCore/assembler/MacroAssemblerARM.cpp.orig 2014-03-19 11:10:05.000000000 +0000 +--- Source/JavaScriptCore/assembler/MacroAssemblerARM.cpp.orig 2015-03-04 14:25:16.000000000 +0000 +++ Source/JavaScriptCore/assembler/MacroAssemblerARM.cpp -@@ -42,6 +42,8 @@ +@@ -38,6 +38,8 @@ #include <unistd.h> #include <elf.h> #include <asm/hwcap.h> @@ -11,7 +11,7 @@ $NetBSD: patch-Source_JavaScriptCore_assembler_MacroAssemblerARM.cpp,v 1.2 2014/ #endif namespace JSC { -@@ -62,6 +64,16 @@ static bool isVFPPresent() +@@ -58,6 +60,16 @@ static bool isVFPPresent() } #endif // OS(LINUX) diff --git a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_dfg_DFGNode.h b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_dfg_DFGNode.h index 48f46a1e001..6ae18c32225 100644 --- a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_dfg_DFGNode.h +++ b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_dfg_DFGNode.h @@ -1,9 +1,9 @@ -$NetBSD: patch-Source_JavaScriptCore_dfg_DFGNode.h,v 1.2 2014/08/03 22:30:05 wiz Exp $ +$NetBSD: patch-Source_JavaScriptCore_dfg_DFGNode.h,v 1.3 2015/07/12 00:44:46 wiz Exp $ ---- Source/JavaScriptCore/dfg/DFGNode.h.orig 2014-04-14 06:40:44.000000000 +0000 +--- Source/JavaScriptCore/dfg/DFGNode.h.orig 2015-03-23 08:08:04.000000000 +0000 +++ Source/JavaScriptCore/dfg/DFGNode.h -@@ -146,7 +146,7 @@ struct SwitchData { - struct OpInfo { +@@ -190,7 +190,7 @@ struct OpInfo { + OpInfo() : m_value(0) { } explicit OpInfo(int32_t value) : m_value(static_cast<uintptr_t>(value)) { } explicit OpInfo(uint32_t value) : m_value(static_cast<uintptr_t>(value)) { } -#if OS(DARWIN) || USE(JSVALUE64) diff --git a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp deleted file mode 100644 index 3538106b94c..00000000000 --- a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp +++ /dev/null @@ -1,88 +0,0 @@ -$NetBSD: patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp,v 1.3 2014/08/03 22:30:05 wiz Exp $ - ---- Source/JavaScriptCore/heap/MachineStackMarker.cpp.orig 2014-04-14 06:40:44.000000000 +0000 -+++ Source/JavaScriptCore/heap/MachineStackMarker.cpp -@@ -20,6 +20,9 @@ - */ - - #include "config.h" -+#if OS(SOLARIS) -+#undef _FILE_OFFSET_BITS -+#endif - #include "MachineStackMarker.h" - - #include "ConservativeRoots.h" -@@ -49,6 +52,10 @@ - #include <unistd.h> - - #if OS(SOLARIS) -+#include <sys/types.h> -+#include <sys/stat.h> -+#include <fcntl.h> -+#include <procfs.h> - #include <thread.h> - #else - #include <pthread.h> -@@ -310,6 +317,7 @@ typedef pthread_attr_t PlatformThreadReg - #error Need a thread register struct for this platform - #endif - -+#if !OS(SOLARIS) - static size_t getPlatformThreadRegisters(const PlatformThread& platformThread, PlatformThreadRegisters& regs) - { - #if OS(DARWIN) -@@ -363,6 +371,7 @@ static size_t getPlatformThreadRegisters - #error Need a way to get thread registers on this platform - #endif - } -+#endif - - static inline void* otherThreadStackPointer(const PlatformThreadRegisters& regs) - { -@@ -425,6 +434,7 @@ static inline void* otherThreadStackPoin - #endif - } - -+#if !OS(SOLARIS) - static void freePlatformThreadRegisters(PlatformThreadRegisters& regs) - { - #if USE(PTHREADS) && !OS(WINDOWS) && !OS(DARWIN) -@@ -433,20 +443,36 @@ static void freePlatformThreadRegisters( - UNUSED_PARAM(regs); - #endif - } -+#endif - - void MachineThreads::gatherFromOtherThread(ConservativeRoots& conservativeRoots, Thread* thread) - { -+#if OS(SOLARIS) -+ struct lwpstatus lwp; -+ char procfile[64]; -+ int fd; -+ snprintf(procfile, 64, "/proc/self/lwp/%u/lwpstatus", thread->platformThread); -+ fd = open(procfile, O_RDONLY, 0); -+ if (fd == -1) { -+ fprintf(stderr, "%s: %s\n", procfile, strerror(errno)); -+ abort(); -+ } -+ pread(fd, &lwp, sizeof(lwp), 0); -+ close(fd); -+ void* stackPointer = (void*)lwp.pr_reg[REG_SP]; -+#else - PlatformThreadRegisters regs; - size_t regSize = getPlatformThreadRegisters(thread->platformThread, regs); - - conservativeRoots.add(static_cast<void*>(®s), static_cast<void*>(reinterpret_cast<char*>(®s) + regSize)); - - void* stackPointer = otherThreadStackPointer(regs); -+ -+ freePlatformThreadRegisters(regs); -+#endif - void* stackBase = thread->stackBase; - swapIfBackwards(stackPointer, stackBase); - conservativeRoots.add(stackPointer, stackBase); -- -- freePlatformThreadRegisters(regs); - } - - void MachineThreads::gatherConservativeRoots(ConservativeRoots& conservativeRoots, void* stackCurrent) diff --git a/www/webkit-gtk/patches/patch-Source_WTF_wtf_MathExtras.h b/www/webkit-gtk/patches/patch-Source_WTF_wtf_MathExtras.h index 9986f4b7770..c8bfb679236 100644 --- a/www/webkit-gtk/patches/patch-Source_WTF_wtf_MathExtras.h +++ b/www/webkit-gtk/patches/patch-Source_WTF_wtf_MathExtras.h @@ -1,10 +1,10 @@ -$NetBSD: patch-Source_WTF_wtf_MathExtras.h,v 1.3 2014/09/16 11:56:13 jperkin Exp $ +$NetBSD: patch-Source_WTF_wtf_MathExtras.h,v 1.4 2015/07/12 00:44:46 wiz Exp $ Avoid broken section for SunOS/gcc. ---- Source/WTF/wtf/MathExtras.h.orig 2014-08-25 12:50:32.000000000 +0000 +--- Source/WTF/wtf/MathExtras.h.orig 2015-03-23 08:08:04.000000000 +0000 +++ Source/WTF/wtf/MathExtras.h -@@ -76,7 +76,7 @@ inline double wtf_ceil(double x) { retur +@@ -84,7 +84,7 @@ inline double wtf_ceil(double x) { retur #endif diff --git a/www/webkit-gtk/patches/patch-Source_WTF_wtf_Platform.h b/www/webkit-gtk/patches/patch-Source_WTF_wtf_Platform.h index 79a3a0216f5..635ad24f906 100644 --- a/www/webkit-gtk/patches/patch-Source_WTF_wtf_Platform.h +++ b/www/webkit-gtk/patches/patch-Source_WTF_wtf_Platform.h @@ -1,7 +1,16 @@ -$NetBSD: patch-Source_WTF_wtf_Platform.h,v 1.4 2015/01/18 18:52:01 wiz Exp $ +$NetBSD: patch-Source_WTF_wtf_Platform.h,v 1.5 2015/07/12 00:44:46 wiz Exp $ ---- Source/WTF/wtf/Platform.h.orig 2015-01-07 09:45:42.000000000 +0000 +--- Source/WTF/wtf/Platform.h.orig 2015-03-23 08:08:04.000000000 +0000 +++ Source/WTF/wtf/Platform.h +@@ -579,7 +579,7 @@ + #endif + + #if !defined(HAVE_STRNSTR) +-#if OS(DARWIN) || (OS(FREEBSD) && !defined(__GLIBC__)) ++#if OS(DARWIN) || ((OS(FREEBSD) || OS(NETBSD)) && !defined(__GLIBC__)) + #define HAVE_STRNSTR 1 + #endif + #endif @@ -632,6 +632,11 @@ #define USE_SYSTEM_MALLOC 1 #endif @@ -11,15 +20,6 @@ $NetBSD: patch-Source_WTF_wtf_Platform.h,v 1.4 2015/01/18 18:52:01 wiz Exp $ +#define USE_SYSTEM_MALLOC 1 +#endif + - #if !defined(ENABLE_GLOBAL_FASTMALLOC_NEW) - #define ENABLE_GLOBAL_FASTMALLOC_NEW 1 - #endif -@@ -723,7 +728,7 @@ - low-level interpreter. */ - #if !defined(ENABLE_LLINT) \ - && ENABLE(JIT) \ -- && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD) || OS(HURD)) \ -+ && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD) || OS(NETBSD) || OS(HURD)) \ - && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(GTK)) \ - && (CPU(X86) || CPU(X86_64) || CPU(ARM_THUMB2) || CPU(ARM_TRADITIONAL) || CPU(ARM64) || CPU(MIPS) || CPU(SH4)) - #define ENABLE_LLINT 1 + #define ENABLE_DEBUG_WITH_BREAKPOINT 0 + #define ENABLE_SAMPLING_COUNTERS 0 + #define ENABLE_SAMPLING_FLAGS 0 diff --git a/www/webkit-gtk/patches/patch-Source_WTF_wtf_Stopwatch.h b/www/webkit-gtk/patches/patch-Source_WTF_wtf_Stopwatch.h new file mode 100644 index 00000000000..2e6595351df --- /dev/null +++ b/www/webkit-gtk/patches/patch-Source_WTF_wtf_Stopwatch.h @@ -0,0 +1,39 @@ +$NetBSD: patch-Source_WTF_wtf_Stopwatch.h,v 1.1 2015/07/12 00:44:46 wiz Exp $ + +--- Source/WTF/wtf/Stopwatch.h.orig 2015-03-04 14:25:16.000000000 +0000 ++++ Source/WTF/wtf/Stopwatch.h +@@ -44,7 +44,7 @@ public: + + double elapsedTime(); + +- bool isActive() const { return !isnan(m_lastStartTime); } ++ bool isActive() const { return !std::isnan(m_lastStartTime); } + private: + Stopwatch() { reset(); } + +@@ -60,14 +60,14 @@ inline void Stopwatch::reset() + + inline void Stopwatch::start() + { +- ASSERT_WITH_MESSAGE(isnan(m_lastStartTime), "Tried to start the stopwatch, but it is already running."); ++ ASSERT_WITH_MESSAGE(std::isnan(m_lastStartTime), "Tried to start the stopwatch, but it is already running."); + + m_lastStartTime = monotonicallyIncreasingTime(); + } + + inline void Stopwatch::stop() + { +- ASSERT_WITH_MESSAGE(!isnan(m_lastStartTime), "Tried to stop the stopwatch, but it is not running."); ++ ASSERT_WITH_MESSAGE(!std::isnan(m_lastStartTime), "Tried to stop the stopwatch, but it is not running."); + + m_elapsedTime += monotonicallyIncreasingTime() - m_lastStartTime; + m_lastStartTime = NAN; +@@ -75,7 +75,7 @@ inline void Stopwatch::stop() + + inline double Stopwatch::elapsedTime() + { +- bool shouldSuspend = !isnan(m_lastStartTime); ++ bool shouldSuspend = !std::isnan(m_lastStartTime); + if (shouldSuspend) + stop(); + diff --git a/www/webkit-gtk/patches/patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp b/www/webkit-gtk/patches/patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp index a9198ec462c..9a78f5c51c1 100644 --- a/www/webkit-gtk/patches/patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp +++ b/www/webkit-gtk/patches/patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp @@ -1,13 +1,13 @@ -$NetBSD: patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp,v 1.2 2014/08/03 22:30:05 wiz Exp $ +$NetBSD: patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp,v 1.3 2015/07/12 00:44:46 wiz Exp $ ---- Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp.orig 2014-04-14 06:40:45.000000000 +0000 +--- Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp.orig 2015-03-04 14:25:17.000000000 +0000 +++ Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp -@@ -61,6 +61,8 @@ JSValue JSInspectorFrontendHost::platfor - DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("linux"))); +@@ -59,6 +59,8 @@ JSValue JSInspectorFrontendHost::platfor + DEPRECATED_DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("linux"))); #elif OS(FREEBSD) - DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("freebsd"))); + DEPRECATED_DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("freebsd"))); +#elif OS(NETBSD) -+ DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("netbsd"))); ++ DEPRECATED_DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("netbsd"))); #elif OS(OPENBSD) - DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("openbsd"))); + DEPRECATED_DEFINE_STATIC_LOCAL(const String, platform, (ASCIILiteral("openbsd"))); #elif OS(SOLARIS) diff --git a/www/webkit-gtk/patches/patch-Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp b/www/webkit-gtk/patches/patch-Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp deleted file mode 100644 index 1efc366fdd9..00000000000 --- a/www/webkit-gtk/patches/patch-Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp,v 1.1 2015/03/24 14:30:29 joerg Exp $ - ---- Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp.orig 2014-10-08 17:54:37.000000000 +0000 -+++ Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp -@@ -403,7 +403,7 @@ TOSTRING(neonDrawLighting) ":" NL - "vmin.f32 " TMP2_D0 ", " TMP2_D0 ", " CONST_ONE_HI_D NL - "vmul.f32 " TMP3_Q ", " COLOR_Q ", " TMP2_D0 "[1]" NL - "vcvt.u32.f32 " TMP3_Q ", " TMP3_Q NL -- "vmov.u32 r2, r3, " TMP3_S0 ", " TMP3_S1 NL -+ "vmov r2, r3, " TMP3_S0 ", " TMP3_S1 NL - // The color values are stored in-place. - "strb r2, [" PIXELS_R ", #-11]" NL - "strb r3, [" PIXELS_R ", #-10]" NL diff --git a/www/webkit-gtk/patches/patch-Source_cmake_OptionsGTK.cmake b/www/webkit-gtk/patches/patch-Source_cmake_OptionsGTK.cmake new file mode 100644 index 00000000000..9d68e897bd8 --- /dev/null +++ b/www/webkit-gtk/patches/patch-Source_cmake_OptionsGTK.cmake @@ -0,0 +1,23 @@ +$NetBSD: patch-Source_cmake_OptionsGTK.cmake,v 1.1 2015/07/12 00:44:46 wiz Exp $ + +Do not conflict with CMAKE_MODULE_PATH during the linking phase of +libwebkit2gtk-4.0.so: + + Linking CXX shared library ../../lib/libwebkit2gtk-4.0.so + ld:/usr/pkgsrc/wip/webkit-gtk/work/.buildlink/cmake-Modules:1: ignoring invalid character `3' in script + [...] + ld:/usr/pkgsrc/wip/webkit-gtk/work/.buildlink/cmake-Modules:1: syntax error in VERSION script + Source/WebKit2/CMakeFiles/WebKit2.dir/build.make:16139: recipe for target 'lib/libwebkit2gtk-4.0.so.37.2.6' failed + [...] + +--- Source/cmake/OptionsGTK.cmake.orig 2015-03-23 09:45:19.000000000 +0000 ++++ Source/cmake/OptionsGTK.cmake +@@ -143,7 +143,7 @@ if (DEVELOPER_MODE) + else () + WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MINIBROWSER OFF) + WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_API_TESTS OFF) +- set(WebKit2_VERSION_SCRIPT "-Wl,--version-script,${CMAKE_MODULE_PATH}/gtksymbols.filter") ++ set(WebKit2_VERSION_SCRIPT "-Wl,--version-script,${CMAKE_SOURCE_DIR}/Source/cmake/gtksymbols.filter") + endif () + + if (CMAKE_SYSTEM_NAME MATCHES "Linux") diff --git a/www/webkit-gtk/patches/patch-Tools_DumpRenderTree_gtk_DumpRenderTree.cpp b/www/webkit-gtk/patches/patch-Tools_DumpRenderTree_gtk_DumpRenderTree.cpp deleted file mode 100644 index 8b29acd6e23..00000000000 --- a/www/webkit-gtk/patches/patch-Tools_DumpRenderTree_gtk_DumpRenderTree.cpp +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-Tools_DumpRenderTree_gtk_DumpRenderTree.cpp,v 1.2 2014/08/03 22:30:05 wiz Exp $ - ---- Tools/DumpRenderTree/gtk/DumpRenderTree.cpp.orig 2014-04-14 06:40:46.000000000 +0000 -+++ Tools/DumpRenderTree/gtk/DumpRenderTree.cpp -@@ -47,6 +47,7 @@ - #include <JavaScriptCore/JavaScript.h> - #include <WebCore/platform/network/soup/GUniquePtrSoup.h> - #include <cassert> -+#include <clocate> - #include <cstdlib> - #include <cstring> - #include <getopt.h> diff --git a/www/webkit-gtk/patches/patch-ai b/www/webkit-gtk/patches/patch-ai index 335e233cf3a..b0adb27acdf 100644 --- a/www/webkit-gtk/patches/patch-ai +++ b/www/webkit-gtk/patches/patch-ai @@ -1,6 +1,6 @@ -$NetBSD: patch-ai,v 1.4 2014/08/03 22:30:05 wiz Exp $ +$NetBSD: patch-ai,v 1.5 2015/07/12 00:44:46 wiz Exp $ ---- Source/WTF/wtf/ThreadIdentifierDataPthreads.cpp.orig 2013-08-03 16:10:38.000000000 +0000 +--- Source/WTF/wtf/ThreadIdentifierDataPthreads.cpp.orig 2014-08-08 18:05:15.000000000 +0000 +++ Source/WTF/wtf/ThreadIdentifierDataPthreads.cpp @@ -39,6 +39,12 @@ #if OS(HURD) diff --git a/www/webkit-gtk/patches/patch-aj b/www/webkit-gtk/patches/patch-aj index bd54dc5c9b8..42f5a1b3804 100644 --- a/www/webkit-gtk/patches/patch-aj +++ b/www/webkit-gtk/patches/patch-aj @@ -1,8 +1,8 @@ -$NetBSD: patch-aj,v 1.3 2014/08/03 22:30:05 wiz Exp $ +$NetBSD: patch-aj,v 1.4 2015/07/12 00:44:46 wiz Exp $ ---- Source/WTF/wtf/InlineASM.h.orig 2014-04-14 06:40:45.000000000 +0000 +--- Source/WTF/wtf/InlineASM.h.orig 2015-03-04 07:19:42.000000000 +0000 +++ Source/WTF/wtf/InlineASM.h -@@ -42,7 +42,7 @@ +@@ -40,7 +40,7 @@ #define THUMB_FUNC_PARAM(name) #endif diff --git a/www/webkit-gtk/patches/patch-ak b/www/webkit-gtk/patches/patch-ak deleted file mode 100644 index e6ca19139d5..00000000000 --- a/www/webkit-gtk/patches/patch-ak +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ak,v 1.4 2014/08/03 22:30:05 wiz Exp $ - ---- Source/ThirdParty/ANGLE/src/compiler/osinclude.h.orig 2014-04-14 06:40:44.000000000 +0000 -+++ Source/ThirdParty/ANGLE/src/compiler/osinclude.h -@@ -16,6 +16,7 @@ - #define ANGLE_OS_WIN - #elif defined(__APPLE__) || defined(__linux__) || \ - defined(__FreeBSD__) || defined(__OpenBSD__) || \ -+ defined(__NetBSD__) || defined(__DragonFly__) || \ - defined(__sun) || defined(ANDROID) || \ - defined(__GLIBC__) || defined(__GNU__) || \ - defined(__QNX__) diff --git a/www/webkit-gtk/patches/patch-am b/www/webkit-gtk/patches/patch-am index 4f637d16cf6..37e1f7c3177 100644 --- a/www/webkit-gtk/patches/patch-am +++ b/www/webkit-gtk/patches/patch-am @@ -1,6 +1,6 @@ -$NetBSD: patch-am,v 1.2 2014/08/03 22:30:05 wiz Exp $ +$NetBSD: patch-am,v 1.3 2015/07/12 00:44:46 wiz Exp $ ---- Source/WTF/wtf/RAMSize.cpp.orig 2014-03-19 11:10:06.000000000 +0000 +--- Source/WTF/wtf/RAMSize.cpp.orig 2015-03-04 14:25:16.000000000 +0000 +++ Source/WTF/wtf/RAMSize.cpp @@ -27,7 +27,7 @@ #include "RAMSize.h" diff --git a/www/webkit-gtk/patches/patch-configure b/www/webkit-gtk/patches/patch-configure deleted file mode 100644 index 6a179a37cb7..00000000000 --- a/www/webkit-gtk/patches/patch-configure +++ /dev/null @@ -1,73 +0,0 @@ -$NetBSD: patch-configure,v 1.8 2015/05/28 05:30:51 wiz Exp $ - ---- configure.orig 2015-05-20 09:29:21.000000000 +0000 -+++ configure -@@ -4709,7 +4709,7 @@ else - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ --#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) -+#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -@@ -4755,7 +4755,7 @@ else - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ --#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) -+#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -@@ -4779,7 +4779,7 @@ rm -f core conftest.err conftest.$ac_obj - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ --#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) -+#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -@@ -4824,7 +4824,7 @@ else - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ --#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) -+#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -@@ -4848,7 +4848,7 @@ rm -f core conftest.err conftest.$ac_obj - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ --#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) -+#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -@@ -17318,10 +17318,13 @@ int - main () - { - unsigned int major, minor, micro; -+ char *tmp_version; - - fclose (fopen ("conf.glibtest", "w")); - -- if (sscanf("$min_glib_version", "%u.%u.%u", &major, &minor, µ) != 3) { -+ /* HP/UX 9 (%@#!) writes to sscanf strings */ -+ tmp_version = g_strdup("$min_glib_version"); -+ if (sscanf(tmp_version, "%u.%u.%u", &major, &minor, µ) != 3) { - printf("%s, bad version string\n", "$min_glib_version"); - exit(1); - } -@@ -21217,7 +21220,7 @@ fi - - - # On some Linux/Unix platforms, shm_* may only be available if linking against librt -- if test "$os_win32" = "no"; then -+ if test "$os_win32" = "no" && test "$os_openbsd" = "no" && test "$os_netbsd" = "no"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing shm_open" >&5 - $as_echo_n "checking for library containing shm_open... " >&6; } - if ${ac_cv_search_shm_open+:} false; then : |