summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-08-05 17:10:58 +0000
committerJim Meyering <jim@meyering.net>2003-08-05 17:10:58 +0000
commitf790a86fdebdf31e81662e85cf958705b2b7c567 (patch)
tree0cf8399c0bcc997ad847d1cf1372a5913e6bc095 /m4
parent01c8ab70824f2f6578bd5636c018489d9e410d2c (diff)
downloadcoreutils-f790a86fdebdf31e81662e85cf958705b2b7c567.tar.xz
Sync from gnulib.
Diffstat (limited to 'm4')
-rw-r--r--m4/error.m418
1 files changed, 11 insertions, 7 deletions
diff --git a/m4/error.m4 b/m4/error.m4
index 717725d61..14e23a71f 100644
--- a/m4/error.m4
+++ b/m4/error.m4
@@ -1,14 +1,18 @@
-#serial 5
+#serial 7
-dnl FIXME: put these prerequisite-only *.m4 files in a separate
-dnl directory -- otherwise, they'll conflict with existing files.
+AC_DEFUN([gl_ERROR],
+[
+ AC_FUNC_ERROR_AT_LINE
+ dnl Note: AC_FUNC_ERROR_AT_LINE does AC_LIBSOURCES([error.h, error.c]).
+ jm_PREREQ_ERROR
+])
-dnl These are the prerequisite macros for GNU's error.c file.
+# Prerequisites of lib/error.c.
AC_DEFUN([jm_PREREQ_ERROR],
[
- AC_CHECK_FUNCS(strerror vprintf doprnt)
+ AC_REQUIRE([AC_HEADER_STDC])
+ AC_REQUIRE([AC_FUNC_VPRINTF])
+ AC_CHECK_FUNCS(strerror)
AC_CHECK_DECLS([strerror])
- AC_CHECK_HEADERS([libintl.h])
AC_FUNC_STRERROR_R
- AC_HEADER_STDC
])