fixed GH #1813: xmlparse.cpp doesn't compile in WinCE (poco 1.7.8p3)

This commit is contained in:
Günter Obiltschnig 2017-08-10 16:47:25 +02:00
parent af06d43b55
commit 8ca493bddf
6 changed files with 19 additions and 4 deletions

View File

@ -1,5 +1,12 @@
This is the changelog file for the POCO C++ Libraries.
Release 1.7.8p4 (2017-08-10)
============================
- fixed GH #1834: Visual Studio 2008 cannot find stdint.h
- fixed GH #1842: Upgrade bundled expat to 2.2.3
Release 1.7.8p3 (2017-06-22)
============================

View File

@ -4,8 +4,8 @@
#include "winres.h"
#define POCO_VERSION 1,7,8,3
#define POCO_VERSION_STR "1.7.8p3"
#define POCO_VERSION 1,7,8,4
#define POCO_VERSION_STR "1.7.8p4"
VS_VERSION_INFO VERSIONINFO
FILEVERSION POCO_VERSION

View File

@ -37,7 +37,7 @@
// Ax: alpha releases
// Bx: beta releases
//
#define POCO_VERSION 0x01070803
#define POCO_VERSION 0x01070804
#endif // Foundation_Version_INCLUDED

View File

@ -1 +1 @@
1.7.8p3
1.7.8p4

View File

@ -917,6 +917,7 @@ gather_time_entropy(void)
static unsigned long
ENTROPY_DEBUG(const char * label, unsigned long entropy) {
#ifdef ENABLE_EXPAT_ENTROPY_DEBUG
const char * const EXPAT_ENTROPY_DEBUG = getenv("EXPAT_ENTROPY_DEBUG");
if (EXPAT_ENTROPY_DEBUG && ! strcmp(EXPAT_ENTROPY_DEBUG, "1")) {
fprintf(stderr, "Entropy: %s --> 0x%0*lx (%lu bytes)\n",
@ -924,6 +925,7 @@ ENTROPY_DEBUG(const char * label, unsigned long entropy) {
(int)sizeof(entropy) * 2, entropy,
(unsigned long)sizeof(entropy));
}
#endif
return entropy;
}

View File

@ -1,6 +1,12 @@
POCO C++ Libraries Release Notes
AAAIntroduction
!!!Release 1.7.8p4
- fixed GH #1834: Visual Studio 2008 cannot find stdint.h
- fixed GH #1842: Upgrade bundled expat to 2.2.3
!!!Release 1.7.8p3
- fixed GH #1760: Upgrade bundled expat to 2.2.1 which fixes some vulnerabilities: