summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-07-10 11:30:50 +0000
committerJim Meyering <jim@meyering.net>2000-07-10 11:30:50 +0000
commit3bcb0b1bc25052f5717d1143671b33a41f5b3835 (patch)
tree3000e239ca3bc405a28ab1186c55aef2c0ba9612
parent0f061bcb2d98344211f8e3f3e21845b3bdf46edf (diff)
downloadcoreutils-3bcb0b1bc25052f5717d1143671b33a41f5b3835.tar.xz
Mirror the correction made in autoconf.
-rw-r--r--m4/strerror_r.m414
1 files changed, 6 insertions, 8 deletions
diff --git a/m4/strerror_r.m4 b/m4/strerror_r.m4
index 72c75515c..6cf46240a 100644
--- a/m4/strerror_r.m4
+++ b/m4/strerror_r.m4
@@ -1,4 +1,4 @@
-#serial 1001
+#serial 1002
# Experimental replacement for the function in the latest CVS autoconf.
# If the compile-test says strerror_r doesn't work, then resort to a
# `run'-test that works on BeOS and segfaults on DEC Unix.
@@ -9,8 +9,7 @@ undefine([AC_FUNC_STRERROR_R])
# AC_FUNC_STRERROR_R
# ------------------
AC_DEFUN([AC_FUNC_STRERROR_R],
-[# Check strerror_r
-AC_CHECK_DECLS([strerror_r])
+[AC_CHECK_DECLS([strerror_r])
AC_CHECK_FUNCS([strerror_r])
if test $ac_cv_func_strerror_r = yes; then
AC_CHECK_HEADERS(string.h)
@@ -58,11 +57,10 @@ if test $ac_cv_func_strerror_r = yes; then
ac_cv_func_strerror_r_works=no,
ac_cv_func_strerror_r_works=no)
fi
-
- if test $ac_cv_func_strerror_r_works = yes; then
- AC_DEFINE_UNQUOTED(HAVE_WORKING_STRERROR_R, 1,
- [Define to 1 if `strerror_r' returns a string.])
- fi
])
+ if test $ac_cv_func_strerror_r_works = yes; then
+ AC_DEFINE_UNQUOTED(HAVE_WORKING_STRERROR_R, 1,
+ [Define to 1 if `strerror_r' returns a string.])
+ fi
fi
])# AC_FUNC_STRERROR_R