diff options
author | Xin LI <delphij@FreeBSD.org> | 2024-02-17 21:56:56 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2024-02-21 06:52:29 +0000 |
commit | 4b79ff18c3b5ea2e3fc2f50569d5cda9f74b8a94 (patch) | |
tree | 8ff095f3ef0834decec1d2bbd6dee17fff075f58 /lib | |
parent | 43b03b8895ad3d1655cd5f418544e3bec1595a65 (diff) |
MFC: MFV: expat 2.6.0.
(cherry picked from commit 4543ef516683042d46f3bd3bb8a4f3f746e00499)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libexpat/expat_config.h | 16 | ||||
-rw-r--r-- | lib/libexpat/libbsdxml.3 | 4 |
2 files changed, 13 insertions, 7 deletions
diff --git a/lib/libexpat/expat_config.h b/lib/libexpat/expat_config.h index 369cebcbe451..0d581a431a53 100644 --- a/lib/libexpat/expat_config.h +++ b/lib/libexpat/expat_config.h @@ -22,6 +22,9 @@ /* Define to 1 if you have the `arc4random_buf' function. */ #define HAVE_ARC4RANDOM_BUF 1 +/* define if the compiler supports basic C++11 syntax */ +#define HAVE_CXX11 1 + /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H 1 @@ -80,13 +83,13 @@ #define PACKAGE "expat" /* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "expat-bugs@libexpat.org" +#define PACKAGE_BUGREPORT "https://github.com/libexpat/libexpat/issues" /* Define to the full name of this package. */ #define PACKAGE_NAME "expat" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "expat 2.5.0" +#define PACKAGE_STRING "expat 2.6.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "expat" @@ -95,7 +98,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "2.5.0" +#define PACKAGE_VERSION "2.6.0" /* Define to 1 if all of the C90 standard headers exist (not just the ones required in a freestanding environment). This macro is provided for @@ -103,7 +106,7 @@ #define STDC_HEADERS 1 /* Version number of package */ -#define VERSION "2.5.0" +#define VERSION "2.6.0" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ @@ -122,7 +125,7 @@ /* #undef XML_ATTR_INFO */ /* Define to specify how much context to retain around the current parse - point. */ + point, 0 to disable. */ #define XML_CONTEXT_BYTES 1024 /* Define to include code reading entropy from `/dev/urandom'. */ @@ -131,6 +134,9 @@ /* Define to make parameter entity parsing functionality available. */ #define XML_DTD 1 +/* Define as 1/0 to enable/disable support for general entities. */ +#define XML_GE 1 + /* Define to make XML Namespaces functionality available. */ #define XML_NS 1 diff --git a/lib/libexpat/libbsdxml.3 b/lib/libexpat/libbsdxml.3 index e4e55a64dd47..c6c2518ea41a 100644 --- a/lib/libexpat/libbsdxml.3 +++ b/lib/libexpat/libbsdxml.3 @@ -23,7 +23,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\"/ -.Dd November 18, 2022 +.Dd February 17, 2024 .Dt LIBBSDXML 3 .Os .Sh NAME @@ -34,7 +34,7 @@ .Sh DESCRIPTION The .Nm -library is a verbatim copy of the eXpat XML library version 2.5.0. +library is a verbatim copy of the eXpat XML library version 2.6.0. .Pp The .Nm |