took away the requirement for automake-1.4, changed the messages for

* autogen.sh: took away the requirement for automake-1.4,
  changed the messages for getting auto* tools to current
  gnu pages.
* configure.in, configure: added check for Linux Dec alpha
  requiring -ieee flag, fixed test for ipv6
* trionan.c: fixed problem for compiling on Linux Dec alpha
  using native compiler
* doc/Makefile.am: implemented regeneration of win32/libxml2.def.src
  whenever libxml2-api.xml is changed.
diff --git a/configure.in b/configure.in
index 404550f..d5c1206 100644
--- a/configure.in
+++ b/configure.in
@@ -209,7 +209,7 @@
   )
   AC_MSG_RESULT($have_ipv6)
 
-  if test $have_ipv6=yes; then
+  if test $have_ipv6 = yes; then
     AC_DEFINE(SUPPORT_IP6)
 
     have_getaddrinfo=no
@@ -220,7 +220,7 @@
       done
     fi
 
-    if test $have_getaddrinfo=yes; then
+    if test $have_getaddrinfo = yes; then
       AC_DEFINE(HAVE_GETADDRINFO)
     fi
   fi
@@ -259,6 +259,9 @@
           *-dec-osf* )
                CFLAGS="${CFLAGS} -ieee"
                ;;
+	  alpha*-*-linux* )
+	       CFLAGS="${CFLAGS} -ieee"
+	       ;;
     esac
 else
     if test "$with_fexceptions" = "yes"