fix my static linking setup on x86_64 Daniel
authorDaniel Veillard <veillard@src.gnome.org>
Mon, 28 Jul 2008 12:49:05 +0000 (12:49 +0000)
committerDaniel Veillard <veillard@src.gnome.org>
Mon, 28 Jul 2008 12:49:05 +0000 (12:49 +0000)
* configure.in: fix my static linking setup on x86_64
Daniel

svn path=/trunk/; revision=1486

ChangeLog
configure.in

index 1a46fa7..828742c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Jul 28 14:46:27 CEST 2008 Daniel Veillard <veillard@redhat.com>
+
+       * configure.in: fix my static linking setup on x86_64
+
 Sun Jul 27 13:52:10 CEST 2008 Daniel Veillard <veillard@redhat.com>
 
        * libxslt/xslt.c: avoid a quadratic behaviour when hitting duplicates
index 706ed96..28fb1ff 100644 (file)
@@ -354,7 +354,7 @@ if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XSLT" ]] || \
     then
        STATIC_BINARIES="-static"
     else
-        STATIC_BINARIES=
+        STATIC_BINARIES="-static"
     fi
     if test "$LOGNAME" = "veillard"
     then
@@ -557,7 +557,8 @@ 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" -a -e $HOME/XML/.libs/libxml2.a ;
+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