wok annotate libwebkit/stuff/WebCore_ChangeLog_124099.diff @ rev 19134

vlc: add locale (thanks sonycrokett2000)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 17 16:06:04 2016 +0200 (2016-05-17)
parents
children
rev   line source
domcox@14105 1 Index: trunk/Source/WebCore/ChangeLog
domcox@14105 2 ===================================================================
domcox@14105 3 --- trunk/Source/WebCore/ChangeLog (revision 124098)
domcox@14105 4 +++ trunk/Source/WebCore/ChangeLog (revision 124099)
domcox@14105 5 @@ -1,2 +1,27 @@
domcox@14105 6 +2012-07-30 Alexis Menard <alexis.menard@openbossa.org>
domcox@14105 7 +
domcox@14105 8 + Build fix with newer bison 2.6.
domcox@14105 9 + https://bugs.webkit.org/show_bug.cgi?id=92264
domcox@14105 10 +
domcox@14105 11 + Reviewed by Adam Barth.
domcox@14105 12 +
domcox@14105 13 + As stated in http://www.gnu.org/software/bison/manual/html_node/Table-of-Symbols.html
domcox@14105 14 + YYLEX_PARAM and YYPARSE_PARAM are depecreated since version 1.875. So far all Mac OS
domcox@14105 15 + version I had access to as well as recent Linux runs at least version 2.3 so it's safe
domcox@14105 16 + to use the replacement of these deprecated macros in favor of %lex-param and %parse-param.
domcox@14105 17 + As announced http://lists.gnu.org/archive/html/info-gnu/2012-07/msg00011.html with the release
domcox@14105 18 + of version 2.6 YYLEX_PARAM and YYPARSE_PARAM are not supported anymore.
domcox@14105 19 +
domcox@14105 20 + No new tests : build fix and the patch should not trigger any regressions
domcox@14105 21 +
domcox@14105 22 + * css/CSSGrammar.y:
domcox@14105 23 + * css/CSSParser.cpp:
domcox@14105 24 + * xml/XPathGrammar.y: Refactored a bit to not use an intermediate PARSER define.
domcox@14105 25 + * xml/XPathParser.cpp: bison 2.6 declare xpathyyparse in the .h file now, i.e. XPathGrammar.h
domcox@14105 26 + therefore including this file within the namespace {} declarations leads to xpathyyparse being
domcox@14105 27 + defined part of WebCore::XPath namespaces but the actual implementation of xpathyyparse is in XPathGrammar.cpp
domcox@14105 28 + (generated) and not implemented within the WebCore::XPath so it lead to linking issues. Last, XPathGrammar.h needs
domcox@14105 29 + to be included after the other includes as it uses some XPath types. It breaks the style but CSSParser.cpp is doing the same.
domcox@14105 30 +
domcox@14105 31 2012-07-30 Sadrul Habib Chowdhury <sadrul@chromium.org>
domcox@14105 32