summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-11-10 14:10:56 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-11-10 14:10:56 +0000
commit431658d74a5f7435788b9743902ee69307b93538 (patch)
tree95b869a1bca2f63f91bcb1d9e4144ed211653d5d
parentd03254ec538e5dbdb05663cf704348fe7739b978 (diff)
downloadlibxslt-431658d74a5f7435788b9743902ee69307b93538.tar.gz
1.0.7 release, DanielLIBXSLT_1_0_7
-rw-r--r--config.h.in3
-rw-r--r--configure.in6
-rw-r--r--libxslt/xsltwin32config.h6
-rw-r--r--xsltproc/Makefile.am17
4 files changed, 9 insertions, 23 deletions
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)