- configure.in xpath.c: applied Bjorn patches for FPE on the
  alpha
Daniel
diff --git a/configure.in b/configure.in
index b7e368f..90e0971 100644
--- a/configure.in
+++ b/configure.in
@@ -157,14 +157,18 @@
 XML_CFLAGS=""
 
 dnl
-dnl Workaround for HP native compiler
-dnl http://bugs.gnome.org/db/31/3163.html
+dnl Workaround for native compilers
+dnl  HP  : http://bugs.gnome.org/db/31/3163.html
+dnl  DEC : Enable NaN/Inf
 dnl
 if test "${GCC}" != "yes" ; then
     case "${host}" in
           *-*-hpux* )
 	       CFLAGS="${CFLAGS} -Wp,-H30000"
 	       ;;
+          *-dec-osf* )
+               CFLAGS="${CFLAGS} -ieee"
+               ;;
     esac
 else
     CFLAGS="${CFLAGS} -Wall"