diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-03-13 12:51:46 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-03-13 12:51:46 +0000 |
commit | e29652c7028df39ca995a30251139422a41ce390 (patch) | |
tree | 82f8722500b66bc26e3c99fed46e439f82fb8013 | |
parent | Revert "Experimental fix for CryptX AES bug #916387" (diff) | |
download | patches-e29652c7028df39ca995a30251139422a41ce390.tar.bz2 patches-e29652c7028df39ca995a30251139422a41ce390.tar.xz patches-e29652c7028df39ca995a30251139422a41ce390.zip |
Patch fixes for qtwebkit and modern libs/tools
-rw-r--r-- | dev-qt/qtwebkit/qtwebkit-fixes.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-qt/qtwebkit/qtwebkit-fixes.patch b/dev-qt/qtwebkit/qtwebkit-fixes.patch new file mode 100644 index 0000000..1954fca --- /dev/null +++ b/dev-qt/qtwebkit/qtwebkit-fixes.patch @@ -0,0 +1,38 @@ +diff --git a/Source/ThirdParty/ANGLE/src/common/mathutil.h b/Source/ThirdParty/ANGLE/src/common/mathutil.h +index 7959da8bd..c983d93c5 100644 +--- a/Source/ThirdParty/ANGLE/src/common/mathutil.h ++++ b/Source/ThirdParty/ANGLE/src/common/mathutil.h +@@ -16,6 +16,7 @@ + #include <algorithm> + #include <string.h> + #include <stdlib.h> ++#include <stdint.h> + + namespace gl + { +diff --git a/Source/WebCore/xml/XSLTProcessor.h b/Source/WebCore/xml/XSLTProcessor.h +index cffd1c45d..72408de42 100644 +--- a/Source/WebCore/xml/XSLTProcessor.h ++++ b/Source/WebCore/xml/XSLTProcessor.h +@@ -64,7 +64,7 @@ public: + + void reset(); + +- static void parseErrorFunc(void* userData, xmlError*); ++ static void parseErrorFunc(void* userData, const xmlError*); + static void genericErrorFunc(void* userData, const char* msg, ...); + + // Only for libXSLT callbacks +diff --git a/Source/WebCore/xml/XSLTProcessorLibxslt.cpp b/Source/WebCore/xml/XSLTProcessorLibxslt.cpp +index 8587b006c..5b6d296a3 100644 +--- a/Source/WebCore/xml/XSLTProcessorLibxslt.cpp ++++ b/Source/WebCore/xml/XSLTProcessorLibxslt.cpp +@@ -78,7 +78,7 @@ void XSLTProcessor::genericErrorFunc(void*, const char*, ...) + // It would be nice to do something with this error message. + } + +-void XSLTProcessor::parseErrorFunc(void* userData, xmlError* error) ++void XSLTProcessor::parseErrorFunc(void* userData, const xmlError* error) + { + PageConsoleClient* console = static_cast<PageConsoleClient*>(userData); + if (!console) |