diff --git a/config.h.in b/config.h.in index ce889f73..5ce08367 100644 --- a/config.h.in +++ b/config.h.in @@ -1,5 +1,8 @@ /* config.h.in. Generated automatically from configure.in by autoheader. */ +/* Define if you need to in order for stat and other things to work. */ +#undef _POSIX_SOURCE + /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS diff --git a/configure.in b/configure.in index 208fb701..ac62ac1b 100644 --- a/configure.in +++ b/configure.in @@ -6,12 +6,12 @@ dnl libexslt is an extension dnl LIBXSLT_MAJOR_VERSION=1 LIBXSLT_MINOR_VERSION=0 -LIBXSLT_MICRO_VERSION=6 +LIBXSLT_MICRO_VERSION=7 PACKAGE=libxslt LIBEXSLT_MAJOR_VERSION=0 -LIBEXSLT_MINOR_VERSION=6 +LIBEXSLT_MINOR_VERSION=7 LIBEXSLT_MICRO_VERSION=0 -LIBXML_REQUIRED_VERSION=2.4.7 +LIBXML_REQUIRED_VERSION=2.4.10 LIBXSLT_VERSION=$LIBXSLT_MAJOR_VERSION.$LIBXSLT_MINOR_VERSION.$LIBXSLT_MICRO_VERSION diff --git a/libxslt/xsltwin32config.h b/libxslt/xsltwin32config.h index 3166d08d..320e1dc1 100644 --- a/libxslt/xsltwin32config.h +++ b/libxslt/xsltwin32config.h @@ -21,21 +21,21 @@ extern "C" { * * the version string like "1.2.3" */ -#define LIBXSLT_DOTTED_VERSION "1.0.6" +#define LIBXSLT_DOTTED_VERSION "1.0.7" /** * LIBXSLT_VERSION: * * the version number: 1.2.3 value is 1002003 */ -#define LIBXSLT_VERSION 10006 +#define LIBXSLT_VERSION 10007 /** * LIBXSLT_VERSION_STRING: * * the version number string, 1.2.3 value is "1002003" */ -#define LIBXSLT_VERSION_STRING "10006" +#define LIBXSLT_VERSION_STRING "10007" /** * WITH_XSLT_DEBUG: diff --git a/xsltproc/Makefile.am b/xsltproc/Makefile.am index 0f69a524..b92f42a6 100644 --- a/xsltproc/Makefile.am +++ b/xsltproc/Makefile.am @@ -2,24 +2,7 @@ INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/libxslt -I$(top_srcdir)/libexslt \ -I$(top_builddir) -I$(top_builddir)/libxslt \ -I$(top_builddir)/libexslt $(LIBXML_CFLAGS) $(CFLAGS) -if DV_STATIC_LINK -# -# Try to bypass the braindead libtool processing of shared libs -# -all: xsltproc - -if WITH_DEBUGGER -xsltproc$(EXEEXT): xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../../XML/.libs/libxml2.a - gcc -g -O -o xsltproc$(EXEEXT) xsltproc.o ../libxslt/.libs/libxslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm -else -xsltproc$(EXEEXT): xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a - gcc -g -O -o xsltproc$(EXEEXT) xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm -endif - -programs= -else programs=xsltproc -endif bin_PROGRAMS = $(programs)