Hey,

Something in the fptools changes broke:

manzano$ cd fptools
manzano$ autoconf-2.52
configure:11956: error: possibly undefined macro: AC_MSG_FAILURE
    [...]
manzano$ ./configure
checking build system type... i386-unknown-openbsd3.4
checking host system type... i386-unknown-openbsd3.4
    [...]
checking for void *... yes
checking size of void *... 4
checking for char... (cached) yes
checking alignment of char... ./configure[9096]: syntax error: `cannot' unexpected


This issue doesn't not occur with autoconf-2.57, but I think I
read yesterday we were trying to keep >=2.50 compatibility :)

Here is something that worked, though I don't know enough
autoconf magic to be sure this is reasonable.

Ciao,
    Don

------------------------------------------------------------------------
Index: aclocal.m4
===================================================================
RCS file: /home/cvs/root/fptools/aclocal.m4,v
retrieving revision 1.138
diff -u -r1.138 aclocal.m4
--- aclocal.m4  19 Aug 2003 09:25:34 -0000      1.138
+++ aclocal.m4  19 Aug 2003 10:29:50 -0000
@@ -73,7 +73,7 @@
   FP_COMPUTE_INT([(long) (&((struct { char c; $1 ty; } *)0)->ty)],
                  [AS_TR_SH([fp_cv_alignment_$1])],
                  [AC_INCLUDES_DEFAULT([$3])],
-                 [AC_MSG_FAILURE([cannot compute alignment ($1), 77])])
+                 [AC_MSG_ERROR([cannot compute alignment ($1), 77])])
 else
   AS_TR_SH([fp_cv_alignment_$1])=0
 fi])dnl
------------------------------------------------------------------------
_______________________________________________
Glasgow-haskell-bugs mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Reply via email to