Skip to content

Commit

Permalink
8234056: Upgrade to libxslt 1.1.34
Browse files Browse the repository at this point in the history
  • Loading branch information
arun-joseph committed Nov 18, 2019
1 parent e37cb37 commit 2d9c0bf
Show file tree
Hide file tree
Showing 34 changed files with 605 additions and 449 deletions.
2 changes: 1 addition & 1 deletion modules/javafx.web/src/main/legal/libxslt.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## xmlsoft.org: libxslt v1.1.33
## xmlsoft.org: libxslt v1.1.34

### libxslt License
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.ac by autoheader. */

/* Define to 1 if you have the <ansidecl.h> header file. */
/* #undef HAVE_ANSIDECL_H */

/* Define to 1 if you have the `clock_gettime' function. */


Expand Down Expand Up @@ -162,7 +159,7 @@
#define PACKAGE_NAME "libxslt"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libxslt 1.1.33"
#define PACKAGE_STRING "libxslt 1.1.34"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libxslt"
Expand All @@ -171,7 +168,7 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.1.33"
#define PACKAGE_VERSION "1.1.34"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
Expand Down Expand Up @@ -199,11 +196,14 @@


/* Version number of package */
#define VERSION "1.1.33"
#define VERSION "1.1.34"

/* Define if debugging support is enabled */
/* #undef WITH_DEBUGGER */

/* Define if profiling support is enabled */
/* #undef WITH_PROFILER */

/* Define to 1 if on MINIX. */
/* #undef _MINIX */

Expand All @@ -213,12 +213,3 @@

/* Define to 1 if you need to in order for `stat' and other things to work. */
/* #undef _POSIX_SOURCE */

/* Using the Win32 Socket implementation */
/* #undef _WINSOCKAPI_ */

/* Win32 Std C name mangling work-around */
/* #undef snprintf */

/* Win32 Std C name mangling work-around */
/* #undef vsnprintf */
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extern "C" {
*
* the version string like "1.2.3"
*/
#define LIBEXSLT_DOTTED_VERSION "1.1.33"
#define LIBEXSLT_DOTTED_VERSION "1.1.34"

/**
* LIBEXSLT_VERSION:
Expand Down Expand Up @@ -56,9 +56,6 @@ extern "C" {
* This macro is used to flag unused function parameters to GCC
*/
#ifdef __GNUC__
#ifdef HAVE_ANSIDECL_H
#include <ansidecl.h>
#endif
#ifndef ATTRIBUTE_UNUSED
#define ATTRIBUTE_UNUSED __attribute__((unused))
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ extern "C" {
*
* the version string like "1.2.3"
*/
#define LIBXSLT_DOTTED_VERSION "1.1.33"
#define LIBXSLT_DOTTED_VERSION "1.1.34"

/**
* LIBXSLT_VERSION:
*
* the version number: 1.2.3 value is 1002003
*/
#define LIBXSLT_VERSION 10133
#define LIBXSLT_VERSION 10134

/**
* LIBXSLT_VERSION_STRING:
*
* the version number string, 1.2.3 value is "1002003"
*/
#define LIBXSLT_VERSION_STRING "10133"
#define LIBXSLT_VERSION_STRING "10134"

/**
* LIBXSLT_VERSION_EXTRA:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.ac by autoheader. */

/* Define to 1 if you have the <ansidecl.h> header file. */
/* #undef HAVE_ANSIDECL_H */

/* Define to 1 if you have the `clock_gettime' function. */


Expand Down Expand Up @@ -161,7 +158,7 @@
#define PACKAGE_NAME "libxslt"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libxslt 1.1.33"
#define PACKAGE_STRING "libxslt 1.1.34"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libxslt"
Expand All @@ -170,7 +167,7 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.1.33"
#define PACKAGE_VERSION "1.1.34"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
Expand Down Expand Up @@ -198,11 +195,14 @@


/* Version number of package */
#define VERSION "1.1.33"
#define VERSION "1.1.34"

/* Define if debugging support is enabled */
/* #undef WITH_DEBUGGER */

/* Define if profiling support is enabled */
/* #undef WITH_PROFILER */

/* Define to 1 if on MINIX. */
/* #undef _MINIX */

Expand All @@ -212,12 +212,3 @@

/* Define to 1 if you need to in order for `stat' and other things to work. */
/* #undef _POSIX_SOURCE */

/* Using the Win32 Socket implementation */
/* #undef _WINSOCKAPI_ */

/* Win32 Std C name mangling work-around */
/* #undef snprintf */

/* Win32 Std C name mangling work-around */
/* #undef vsnprintf */
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ xsltConf.sh: xsltConf.sh.in Makefile
-e 's?\@XSLT_INCLUDEDIR\@?$(XSLT_INCLUDEDIR)?g' \
-e 's?\@VERSION\@?$(VERSION)?g' \
-e 's?\@XSLT_LIBS\@?$(XSLT_LIBS) $(EXTRA_LIBS)?g' \
-e 's?\@XSLT_PRIVATE_LIBS\@?$(XSLT_PRIVATE_LIBS)?g' \
< $(srcdir)/xsltConf.sh.in > xsltConf.tmp \
&& mv xsltConf.tmp xsltConf.sh

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
/* config.h.in. Generated from configure.ac by autoheader. */

/* Define to 1 if you have the <ansidecl.h> header file. */
#undef HAVE_ANSIDECL_H

/* Define to 1 if you have the `clock_gettime' function. */
#undef HAVE_CLOCK_GETTIME

Expand Down Expand Up @@ -203,6 +200,9 @@
/* Define if debugging support is enabled */
#undef WITH_DEBUGGER

/* Define if profiling support is enabled */
#undef WITH_PROFILER

/* Define to 1 if on MINIX. */
#undef _MINIX

Expand All @@ -212,12 +212,3 @@

/* Define to 1 if you need to in order for `stat' and other things to work. */
#undef _POSIX_SOURCE

/* Using the Win32 Socket implementation */
#undef _WINSOCKAPI_

/* Win32 Std C name mangling work-around */
#undef snprintf

/* Win32 Std C name mangling work-around */
#undef vsnprintf
Loading

0 comments on commit 2d9c0bf

Please sign in to comment.