* acgeneral.m4 (AC_CHECK_FUNC): Don't actually call the function.
+1999-01-09 J"orn Rennecke <amylaar@cygnus.co.uk>
+
+ * acgeneral.m4 (AC_CHECK_FUNC): Don't actually call the function.
+
1999-01-09 H.J. Lu <hjl@lucon.org>
* config.guess: Permit multiple concurrent instances by including
[/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char $1();
+char (*f)();
], [
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
#if defined (__stub_$1) || defined (__stub___$1)
choke me
#else
-$1();
+f = $1;
#endif
], eval "ac_cv_func_$1=yes", eval "ac_cv_func_$1=no")])
if eval "test \"`echo '$ac_cv_func_'$1`\" = yes"; then
[/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char $1();
+char (*f)();
], [
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
#if defined (__stub_$1) || defined (__stub___$1)
choke me
#else
-$1();
+f = $1;
#endif
], eval "ac_cv_func_$1=yes", eval "ac_cv_func_$1=no")])
if eval "test \"`echo '$ac_cv_func_'$1`\" = yes"; then