diff options
author | Daniel Veillard <veillard@redhat.com> | 2010-11-08 10:32:32 +0100 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2010-11-08 10:32:32 +0100 |
commit | 072a80a94b76b7397b742a0c2d9602be1b44f0d7 (patch) | |
tree | 994bd48e6c14174006bb52ce9a3406f9eb86e383 | |
parent | c1c98594e1b3aa68cbf04296bf8f192173151cde (diff) | |
download | libxslt-072a80a94b76b7397b742a0c2d9602be1b44f0d7.tar.gz libxslt-072a80a94b76b7397b742a0c2d9602be1b44f0d7.tar.bz2 libxslt-072a80a94b76b7397b742a0c2d9602be1b44f0d7.zip |
Get rid of specific build setup and STATIC_BINARIES
-rw-r--r-- | config.h.in | 3 | ||||
-rw-r--r-- | configure.in | 29 | ||||
-rw-r--r-- | doc/internals.html | 4 | ||||
-rw-r--r-- | xsltproc/Makefile.am | 3 |
4 files changed, 6 insertions, 33 deletions
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 <dlfcn.h> 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).</p><p>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).</p><h3><a name="Thanks" id="Thanks">Thanks:</a></h3><p>Thanks to Michael Sperberg-McQueen for various fixes and clarifications - on this document!</p><p></p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> +xsltCompMatch).</p><h3><a name="Thanks" id="Thanks">Thanks:</a></h3><p>Thanks to <a href="http://cmsmcq.com/">Michael Sperberg-McQueen</a> for + various fixes and clarifications on this document!</p><p></p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/xsltproc/Makefile.am b/xsltproc/Makefile.am index ae4421e0..21d5cea5 100644 --- a/xsltproc/Makefile.am +++ b/xsltproc/Makefile.am @@ -21,8 +21,7 @@ testThreads_LDADD= $(THREAD_LIBS) $(LDADDS) DEPS = $(top_builddir)/libxslt/libxslt.la \ $(top_builddir)/libexslt/libexslt.la -LDADDS = @STATIC_BINARIES@ \ - $(top_builddir)/libxslt/libxslt.la \ +LDADDS = $(top_builddir)/libxslt/libxslt.la \ $(top_builddir)/libexslt/libexslt.la \ @LIBXML_LIBS@ $(EXTRA_LIBS) @WIN32_EXTRA_LIBADD@ |