* From: Pavel Roskin <[EMAIL PROTECTED]>
* Date: Mon, 25 Dec 2000 09:58:16 -0500 (EST)
> > Hi,
> > I found a typo in `autoreconf.sh' ($localddir -> $localdir).
>
> Fix applied.
> Thanks!
Thank you for applying my patch.
I found another bug in AC_FUNC_MEMCMP. It lacks `,' between 1st
and 2nd argument to AC_TRY_RUN. On any system, configure cannot
find a working memcmp() because the line
ac_cv_func_memcmp_working=yes
is a part of the test program!
Index: acfunctions.m4
===================================================================
RCS file: /cvs/autoconf/acfunctions.m4,v
retrieving revision 1.21
diff -u -r1.21 acfunctions.m4
--- acfunctions.m4 2000/11/17 16:45:24 1.21
+++ acfunctions.m4 2000/12/28 14:27:51
@@ -769,7 +769,7 @@
}
exit (0);
}
-}]
+}],
ac_cv_func_memcmp_working=yes,
ac_cv_func_memcmp_working=no,
ac_cv_func_memcmp_working=no)])
______________________________________________________________________
Motoyuki Kasahara