mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
fixed GH #1813: xmlparse.cpp doesn't compile in WinCE (poco 1.7.8p3)
This commit is contained in:
parent
af06d43b55
commit
8ca493bddf
@ -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)
|
||||
============================
|
||||
|
||||
|
@ -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
|
||||
|
@ -37,7 +37,7 @@
|
||||
// Ax: alpha releases
|
||||
// Bx: beta releases
|
||||
//
|
||||
#define POCO_VERSION 0x01070803
|
||||
#define POCO_VERSION 0x01070804
|
||||
|
||||
|
||||
#endif // Foundation_Version_INCLUDED
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user