Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8237889: Update libxml2 to version 2.9.10
Reviewed-by: kcr, jvos
  • Loading branch information
arun-joseph authored and kevinrushforth committed Mar 2, 2020
1 parent 20328b3 commit 4c132cd
Show file tree
Hide file tree
Showing 70 changed files with 1,952 additions and 1,701 deletions.
2 changes: 1 addition & 1 deletion modules/javafx.web/src/main/legal/libxml2.md
@@ -1,4 +1,4 @@
## xmlsoft.org: libxml2 v2.9.9
## xmlsoft.org: libxml2 v2.9.10

### libxml2 License
```
Expand Down
Expand Up @@ -268,7 +268,7 @@
#define VA_LIST_IS_ARRAY 1

/* Version number of package */
#define VERSION "2.9.9"
#define VERSION "2.9.10"

/* Determine what socket length (socklen_t) data type is */
#define XML_SOCKLEN_T socklen_t
Expand Down
Expand Up @@ -29,21 +29,21 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
*
* the version string like "1.2.3"
*/
#define LIBXML_DOTTED_VERSION "2.9.9"
#define LIBXML_DOTTED_VERSION "2.9.10"

/**
* LIBXML_VERSION:
*
* the version number: 1.2.3 value is 10203
*/
#define LIBXML_VERSION 20909
#define LIBXML_VERSION 20910

/**
* LIBXML_VERSION_STRING:
*
* the version number string, 1.2.3 value is "10203"
*/
#define LIBXML_VERSION_STRING "20909"
#define LIBXML_VERSION_STRING "20910"

/**
* LIBXML_VERSION_EXTRA:
Expand All @@ -58,7 +58,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
* Macro to check that the libxml version in use is compatible with
* the version the software has been compiled against
*/
#define LIBXML_TEST_VERSION xmlCheckVersion(20909);
#define LIBXML_TEST_VERSION xmlCheckVersion(20910);

#ifndef VMS
#if 0
Expand Down Expand Up @@ -91,11 +91,8 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
* Whether the thread support is configured in
*/
#if 1
#if defined(_REENTRANT) || defined(__MT__) || \
(defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L))
#define LIBXML_THREAD_ENABLED
#endif
#endif

/**
* LIBXML_THREAD_ALLOC_ENABLED:
Expand Down Expand Up @@ -353,6 +350,8 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
* LIBXML_EXPR_ENABLED:
*
* Whether the formal expressions interfaces are compiled in
*
* This code is unused and disabled unconditionally for now.
*/
#if 0
#define LIBXML_EXPR_ENABLED
Expand Down
Expand Up @@ -267,7 +267,7 @@
#define VA_LIST_IS_ARRAY 1

/* Version number of package */
#define VERSION "2.9.9"
#define VERSION "2.9.10"

/* Determine what socket length (socklen_t) data type is */
#define XML_SOCKLEN_T socklen_t
Expand Down
Expand Up @@ -29,21 +29,21 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
*
* the version string like "1.2.3"
*/
#define LIBXML_DOTTED_VERSION "2.9.9"
#define LIBXML_DOTTED_VERSION "2.9.10"

/**
* LIBXML_VERSION:
*
* the version number: 1.2.3 value is 10203
*/
#define LIBXML_VERSION 20909
#define LIBXML_VERSION 20910

/**
* LIBXML_VERSION_STRING:
*
* the version number string, 1.2.3 value is "10203"
*/
#define LIBXML_VERSION_STRING "20909"
#define LIBXML_VERSION_STRING "20910"

/**
* LIBXML_VERSION_EXTRA:
Expand All @@ -58,7 +58,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
* Macro to check that the libxml version in use is compatible with
* the version the software has been compiled against
*/
#define LIBXML_TEST_VERSION xmlCheckVersion(20909);
#define LIBXML_TEST_VERSION xmlCheckVersion(20910);

#ifndef VMS
#if 0
Expand Down Expand Up @@ -91,11 +91,8 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
* Whether the thread support is configured in
*/
#if 1
#if defined(_REENTRANT) || defined(__MT__) || \
(defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L))
#define LIBXML_THREAD_ENABLED
#endif
#endif

/**
* LIBXML_THREAD_ALLOC_ENABLED:
Expand Down Expand Up @@ -353,6 +350,8 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
* LIBXML_EXPR_ENABLED:
*
* Whether the formal expressions interfaces are compiled in
*
* This code is unused and disabled unconditionally for now.
*/
#if 0
#define LIBXML_EXPR_ENABLED
Expand Down

0 comments on commit 4c132cd

Please sign in to comment.