diff --git a/config.h.in b/config.h.in
index b3e2dd55..2f9f9732 100644
--- a/config.h.in
+++ b/config.h.in
@@ -12,6 +12,9 @@
/* Define to 1 if you have the `asctime' function. */
#undef HAVE_ASCTIME
+/* Define to 1 if you have the `clock_gettime' function. */
+#undef HAVE_CLOCK_GETTIME
+
/* Define to 1 if you have the header file. */
#undef HAVE_DLFCN_H
diff --git a/configure.in b/configure.in
index d4418d33..243173bf 100644
--- a/configure.in
+++ b/configure.in
@@ -414,21 +414,7 @@ if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XSLT" ]] || \
with_mem_debug="yes"
fi
CFLAGS="-Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline "
- if test "`uname -m`" != "x86_64" ;
- then
- STATIC_BINARIES="-static"
- else
- STATIC_BINARIES="-static"
- fi
- if test "$LOGNAME" = "veillard"
- then
- LIBXML_SRC="/u/veillard/XML"
- EXTRA_LIBS="$EXTRA_LIBS -ldl"
- fi
-else
- STATIC_BINARIES=
fi
-AC_SUBST(STATIC_BINARIES)
AC_ARG_WITH(debug, [ --with-debug Add the debugging code (on)])
if test "$with_debug" = "no" ; then
@@ -617,21 +603,6 @@ test "x$module_prefix" = xNONE && module_prefix=$ac_default_prefix
LIBXSLT_DEFAULT_PLUGINS_PATH="$module_prefix/lib/libxslt-plugins"
AC_SUBST(LIBXSLT_DEFAULT_PLUGINS_PATH)
-dnl
-dnl In build tree I use a static version with memory debug enabled
-dnl
-if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XSLT" ; then
-dnl if test "`uname -i`" != "x86_64" -a -e $HOME/XML/.libs/libxml2.a ;
- if test -e $HOME/XML/.libs/libxml2.a ;
- then
- LIBXML_LIBS="$HOME/XML/.libs/libxml2.a -lpthread -lz"
- fi
- DV_LINK="1"
- XSLTPROCDV="xsltproc.dv"
- INSTALLED_XSLT_LIB=""
- LIBXML_SRC="$HOME/XML/"
-fi
-
WIN32_EXTRA_LIBADD=
WIN32_EXTRA_LDFLAGS=
case "$host" in
diff --git a/doc/internals.html b/doc/internals.html
index 5387c790..64cd5258 100644
--- a/doc/internals.html
+++ b/doc/internals.html
@@ -294,5 +294,5 @@ appendix and making direct checks using the libxml validation API sounds a
good idea too (though one should take care of not raising errors for
elements/attributes in different namespaces).
Double check all the places where the stylesheet compiled form might be
modified at run time (extra removal of blanks nodes, hint on the
-xsltCompMatch).
Thanks to Michael Sperberg-McQueen for various fixes and clarifications
- on this document!
Daniel Veillard