diff options
author | joerg <joerg@pkgsrc.org> | 2020-09-14 18:19:16 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2020-09-14 18:19:16 +0000 |
commit | dea57a73b280fa082c44fbc3e6e8dc78bc59ef0f (patch) | |
tree | 7cb8f61261c19874dfcd371d9af9a67832558fbf /www | |
parent | ffaff052236db87fa5ad40739d610d53dee28e07 (diff) | |
download | pkgsrc-dea57a73b280fa082c44fbc3e6e8dc78bc59ef0f.tar.gz |
Fix build with newer Bison.
Diffstat (limited to 'www')
-rw-r--r-- | www/webkit24-gtk/distinfo | 3 | ||||
-rw-r--r-- | www/webkit24-gtk/patches/patch-Source_WebCore_css_makegrammar.pl | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/www/webkit24-gtk/distinfo b/www/webkit24-gtk/distinfo index d85cb211ecf..5a25b77921c 100644 --- a/www/webkit24-gtk/distinfo +++ b/www/webkit24-gtk/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.11 2020/08/03 08:36:23 jmcneill Exp $ +$NetBSD: distinfo,v 1.12 2020/09/14 18:19:16 joerg Exp $ SHA1 (webkitgtk-2.4.11.tar.xz) = e425ae86084ab6335dadb368c9e8f53600665d54 RMD160 (webkitgtk-2.4.11.tar.xz) = e1f72498f911465f5ba152313dd9c62ae8d5eee6 @@ -18,6 +18,7 @@ SHA1 (patch-Source_WTF_wtf_MathExtras.h) = bce39efce126793c2a33ab99224ca44860273 SHA1 (patch-Source_WTF_wtf_Platform.h) = 5eabed49099e03ddcf9c973ecca0508174a09ed6 SHA1 (patch-Source_WTF_wtf_dtoa_utils.h) = 3e00331ef4ea5dd71a07f0952da089ccd67a9e66 SHA1 (patch-Source_WebCore_bindings_js_JSInspectorFrontendHostCustom.cpp) = 2835657e04cdbc0cc7be8a6793061f0b98f84224 +SHA1 (patch-Source_WebCore_css_makegrammar.pl) = f28b3b7d011f01ac458ea96fb97ae77ef0896c9a SHA1 (patch-Source_WebCore_dom_Document.cpp) = c7f810b09a17b0a0e7534cfeacc7a2f2ac833c60 SHA1 (patch-Source_WebCore_platform_graphics_SegmentedFontData.cpp) = dd37d10a794d832e87b4074ff08e8f2f2630b0e7 SHA1 (patch-Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp) = 6d3b9ee1559a18c17229698e44246f13c77278c9 diff --git a/www/webkit24-gtk/patches/patch-Source_WebCore_css_makegrammar.pl b/www/webkit24-gtk/patches/patch-Source_WebCore_css_makegrammar.pl new file mode 100644 index 00000000000..88f677cc663 --- /dev/null +++ b/www/webkit24-gtk/patches/patch-Source_WebCore_css_makegrammar.pl @@ -0,0 +1,14 @@ +$NetBSD: patch-Source_WebCore_css_makegrammar.pl,v 1.1 2020/09/14 18:19:16 joerg Exp $ + +Don't remove header created by bison, it is referenced from the parser in +newer version. + +--- Source/WebCore/css/makegrammar.pl.orig 2020-09-12 19:54:15.554993196 +0000 ++++ Source/WebCore/css/makegrammar.pl +@@ -91,5 +91,5 @@ print HEADER "#endif\n"; + close HEADER; + + unlink("$fileBase.cpp.h"); +-unlink("$fileBase.hpp"); ++#unlink("$fileBase.hpp"); + |