diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2005-01-22 18:19:08 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2005-01-22 18:19:08 +0000 |
commit | 4bfc6d4ed524aff48e45a088ece6c1549bead066 (patch) | |
tree | a4f10cea64e789438fa759ddb1ed66c7e4e204f2 /configure.in | |
parent | cd972e04a33483c0e0cbeaf3fe3f6f266326c17c (diff) | |
download | libxslt-4bfc6d4ed524aff48e45a088ece6c1549bead066.tar.gz libxslt-4bfc6d4ed524aff48e45a088ece6c1549bead066.tar.bz2 libxslt-4bfc6d4ed524aff48e45a088ece6c1549bead066.zip |
small fix for local setup speeding up some variable lookup. In the process
* configure.in: small fix for local setup
* libxslt/transform.c libxslt/variables.c : speeding up some
variable lookup. In the process dug out something nasty about
ctxt->dict creation and key initialization order.
Daniel
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c4fba7c2..68cf1033 100644 --- a/configure.in +++ b/configure.in @@ -483,7 +483,7 @@ 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 - if test "`uname -i`" != "x86_64" ; + if test "`uname -i`" != "x86_64" -a -e $HOME/XML/.libs/libxml2.a ; then LIBXML_LIBS="$HOME/XML/.libs/libxml2.a -lpthread -lz" fi |