-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Pascal Bach <[email protected]> Signed-off-by: Khem Raj <[email protected]>
- Loading branch information
Showing
3 changed files
with
30 additions
and
50 deletions.
There are no files selected for viewing
47 changes: 0 additions & 47 deletions
47
meta-oe/recipes-support/poco/poco/0001-Add-support-of-arch-riscv32.patch
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
meta-oe/recipes-support/poco/poco/0001-fix-missing-expat-definition.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 3f288fefbd683d687bde3fc63964da64bc3c8a40 Mon Sep 17 00:00:00 2001 | ||
From: Pascal Bach <[email protected]> | ||
Date: Wed, 11 Aug 2021 15:11:49 +0200 | ||
Subject: [PATCH] fix missing expat definition | ||
|
||
Upstream-Status: Submitted [https://github.com/pocoproject/poco/pull/3414] | ||
Signed-off-by: Pascal Bach <[email protected]> | ||
--- | ||
XML/src/ParserEngine.cpp | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/XML/src/ParserEngine.cpp b/XML/src/ParserEngine.cpp | ||
index 82d477478..6213e555b 100644 | ||
--- a/XML/src/ParserEngine.cpp | ||
+++ b/XML/src/ParserEngine.cpp | ||
@@ -504,7 +504,7 @@ void ParserEngine::init() | ||
XML_SetParamEntityParsing(_parser, _externalParameterEntities ? XML_PARAM_ENTITY_PARSING_ALWAYS : XML_PARAM_ENTITY_PARSING_NEVER); | ||
XML_SetUnknownEncodingHandler(_parser, handleUnknownEncoding, this); | ||
|
||
-#if XML_MAJOR_VERSION > 2 || (XML_MAJOR_VERSION == 2 && XML_MINOR_VERSION >= 4) | ||
+#if XML_DTD && (XML_MAJOR_VERSION > 2 || (XML_MAJOR_VERSION == 2 && XML_MINOR_VERSION >= 4)) | ||
if (_maximumAmplificationFactor > 1.0) | ||
{ | ||
XML_SetBillionLaughsAttackProtectionMaximumAmplification(_parser, _maximumAmplificationFactor); | ||
-- | ||
2.32.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters