Skip to content

Commit e05bff8

Browse files
committed
project: Update for 2.9.10 merge.
1 parent 40ac6d2 commit e05bff8

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

SMP/SMP.patch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/catalog.c b/catalog.c
2-
index f814121c..df20802a 100644
2+
index 7328fd31..ab1b7492 100644
33
--- a/catalog.c
44
+++ b/catalog.c
55
@@ -77,6 +77,10 @@
@@ -35,7 +35,7 @@ index f814121c..df20802a 100644
3535
char buf[256];
3636
unsigned long len = GetModuleFileNameA(hmodule, buf, 255);
3737
diff --git a/nanohttp.c b/nanohttp.c
38-
index 2143718a..e08e175a 100644
38+
index 018b7e18..68930397 100644
3939
--- a/nanohttp.c
4040
+++ b/nanohttp.c
4141
@@ -77,6 +77,13 @@
@@ -53,7 +53,7 @@ index 2143718a..e08e175a 100644
5353
#include <libxml/xmlerror.h>
5454
#include <libxml/xmlmemory.h>
5555
diff --git a/xmlIO.c b/xmlIO.c
56-
index f61dd05a..1a370aa8 100644
56+
index 752d5e0a..51fc8b96 100644
5757
--- a/xmlIO.c
5858
+++ b/xmlIO.c
5959
@@ -43,12 +43,20 @@
@@ -77,7 +77,7 @@ index f61dd05a..1a370aa8 100644
7777
#ifndef S_ISDIR
7878
# ifdef _S_ISDIR
7979
# define S_ISDIR(x) _S_ISDIR(x)
80-
@@ -3739,11 +3747,13 @@ xmlParserGetDirectory(const char *filename) {
80+
@@ -3762,11 +3770,13 @@ xmlParserGetDirectory(const char *filename) {
8181
if (cur == dir) dir[1] = 0;
8282
else *cur = 0;
8383
ret = xmlMemStrdup(dir);
@@ -122,7 +122,7 @@ index 6f16c4b3..efed9920 100644
122122
* *
123123
* Macros, variables and associated types *
124124
diff --git a/xmlmodule.c b/xmlmodule.c
125-
index a95ab66a..04ca2f2d 100644
125+
index 1867a5e1..cf450cc1 100644
126126
--- a/xmlmodule.c
127127
+++ b/xmlmodule.c
128128
@@ -314,7 +314,15 @@ xmlModulePlatformSymbol(void *handle, const char *name, void **symbol)

SMP/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#if defined(_MSC_VER) || defined(__BORLANDC__)
3939
/* MS C-runtime has functions which can be used in order to determine if
4040
a given floating-point variable contains NaN, (+-)INF. These are
41-
preferred, because floating-point technology is considered propriatary
41+
preferred, because floating-point technology is considered proprietary
4242
by MS and we can assume that their functions know more about their
4343
oddities than we do. */
4444
#include <float.h>

SMP/libxml/xmlversion.h

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,36 +29,36 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
2929
*
3030
* the version string like "1.2.3"
3131
*/
32-
#define LIBXML_DOTTED_VERSION "2.9.9"
32+
#define LIBXML_DOTTED_VERSION "2.9.10"
3333

3434
/**
3535
* LIBXML_VERSION:
3636
*
3737
* the version number: 1.2.3 value is 10203
3838
*/
39-
#define LIBXML_VERSION 20909
39+
#define LIBXML_VERSION 209010
4040

4141
/**
4242
* LIBXML_VERSION_STRING:
4343
*
4444
* the version number string, 1.2.3 value is "10203"
4545
*/
46-
#define LIBXML_VERSION_STRING "20909"
46+
#define LIBXML_VERSION_STRING "209010"
4747

4848
/**
4949
* LIBXML_VERSION_EXTRA:
5050
*
5151
* extra version information, used to show a CVS compilation
5252
*/
53-
#define LIBXML_VERSION_EXTRA "-GITv2.9.9"
53+
#define LIBXML_VERSION_EXTRA "-GITv2.9.10"
5454

5555
/**
5656
* LIBXML_TEST_VERSION:
5757
*
5858
* Macro to check that the libxml version in use is compatible with
5959
* the version the software has been compiled against
6060
*/
61-
#define LIBXML_TEST_VERSION xmlCheckVersion(20909);
61+
#define LIBXML_TEST_VERSION xmlCheckVersion(209010);
6262

6363
#ifndef VMS
6464
#if 0
@@ -91,11 +91,8 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
9191
* Whether the thread support is configured in
9292
*/
9393
#if 1
94-
#if defined(_REENTRANT) || defined(__MT__) || \
95-
(defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L))
9694
#define LIBXML_THREAD_ENABLED
9795
#endif
98-
#endif
9996

10097
/**
10198
* LIBXML_THREAD_ALLOC_ENABLED:
@@ -353,8 +350,10 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
353350
* LIBXML_EXPR_ENABLED:
354351
*
355352
* Whether the formal expressions interfaces are compiled in
353+
*
354+
* This code is unused and disabled unconditionally for now.
356355
*/
357-
#if 1
356+
#if 0
358357
#define LIBXML_EXPR_ENABLED
359358
#endif
360359

SMP/rcVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
#define LIBXML_MAJOR_VERSION 2
77
#define LIBXML_MINOR_VERSION 9
8-
#define LIBXML_MICRO_VERSION 9
9-
#define LIBXML_DOTTED_VERSION "2.9.9"
8+
#define LIBXML_MICRO_VERSION 10
9+
#define LIBXML_DOTTED_VERSION "2.9.10"

0 commit comments

Comments
 (0)