Skip to content

Commit 8527bd0

Browse files
bachpkraj
authored andcommitted
poco: update to 1.11.0
Signed-off-by: Pascal Bach <[email protected]> Signed-off-by: Khem Raj <[email protected]>
1 parent 4de9ab4 commit 8527bd0

File tree

3 files changed

+30
-50
lines changed

3 files changed

+30
-50
lines changed

meta-oe/recipes-support/poco/poco/0001-Add-support-of-arch-riscv32.patch

Lines changed: 0 additions & 47 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
From 3f288fefbd683d687bde3fc63964da64bc3c8a40 Mon Sep 17 00:00:00 2001
2+
From: Pascal Bach <[email protected]>
3+
Date: Wed, 11 Aug 2021 15:11:49 +0200
4+
Subject: [PATCH] fix missing expat definition
5+
6+
Upstream-Status: Submitted [https://github.com/pocoproject/poco/pull/3414]
7+
Signed-off-by: Pascal Bach <[email protected]>
8+
---
9+
XML/src/ParserEngine.cpp | 2 +-
10+
1 file changed, 1 insertion(+), 1 deletion(-)
11+
12+
diff --git a/XML/src/ParserEngine.cpp b/XML/src/ParserEngine.cpp
13+
index 82d477478..6213e555b 100644
14+
--- a/XML/src/ParserEngine.cpp
15+
+++ b/XML/src/ParserEngine.cpp
16+
@@ -504,7 +504,7 @@ void ParserEngine::init()
17+
XML_SetParamEntityParsing(_parser, _externalParameterEntities ? XML_PARAM_ENTITY_PARSING_ALWAYS : XML_PARAM_ENTITY_PARSING_NEVER);
18+
XML_SetUnknownEncodingHandler(_parser, handleUnknownEncoding, this);
19+
20+
-#if XML_MAJOR_VERSION > 2 || (XML_MAJOR_VERSION == 2 && XML_MINOR_VERSION >= 4)
21+
+#if XML_DTD && (XML_MAJOR_VERSION > 2 || (XML_MAJOR_VERSION == 2 && XML_MINOR_VERSION >= 4))
22+
if (_maximumAmplificationFactor > 1.0)
23+
{
24+
XML_SetBillionLaughsAttackProtectionMaximumAmplification(_parser, _maximumAmplificationFactor);
25+
--
26+
2.32.0
27+

meta-oe/recipes-support/poco/poco_1.10.1.bb renamed to meta-oe/recipes-support/poco/poco_1.11.0.bb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=4267f48fc738f50380cbeeb76f95cebc"
99
DEPENDS = "libpcre zlib"
1010

1111
SRC_URI = " \
12-
git://github.com/pocoproject/poco.git;branch=poco-${PV} \
13-
file://0001-Add-support-of-arch-riscv32.patch \
12+
git://github.com/pocoproject/poco.git;branch=master \
13+
file://0001-fix-missing-expat-definition.patch \
1414
file://run-ptest \
1515
"
16-
SRCREV = "a3d827d80eb7f3329c58e73eb2906cb7ba829019"
16+
SRCREV = "f81a38057f1d240fe7b7a069612776f788bc88ea"
1717

1818
UPSTREAM_CHECK_GITTAGREGEX = "poco-(?P<pver>\d+(\.\d+)+)"
1919

0 commit comments

Comments
 (0)