aboutsummaryrefslogtreecommitdiff
path: root/lib/error.m4
diff options
context:
space:
mode:
authorGravatar Ton Voon <tonvoon@users.sourceforge.net> 2004-11-12 00:49:51 +0000
committerGravatar Ton Voon <tonvoon@users.sourceforge.net> 2004-11-12 00:49:51 +0000
commitfbf1e60f477460205c2002bb34b87f9e1e3b0faf (patch)
tree96d568de54259a8b1f8e6a88dbb533037ef730e5 /lib/error.m4
parentdbe8fb585697e3a7c073cef083ff2fb027b76968 (diff)
downloadmonitoring-plugins-fbf1e60f477460205c2002bb34b87f9e1e3b0faf.tar.gz
Update to using coreutils 5.2.1 libraries and snprintf.c from samba 3.0.8
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@895 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/error.m4')
-rw-r--r--lib/error.m419
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/error.m4 b/lib/error.m4
index 717725d6..0bc2e689 100644
--- a/lib/error.m4
+++ b/lib/error.m4
@@ -1,14 +1,15 @@
-#serial 5
+#serial 9
-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_CHECK_DECLS([strerror])
- AC_CHECK_HEADERS([libintl.h])
- AC_FUNC_STRERROR_R
- AC_HEADER_STDC
+ AC_REQUIRE([AC_FUNC_STRERROR_R])
+ :
])