summaryrefslogtreecommitdiffstats
path: root/m4/error.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/error.m4')
-rw-r--r--m4/error.m415
1 files changed, 15 insertions, 0 deletions
diff --git a/m4/error.m4 b/m4/error.m4
new file mode 100644
index 0000000..0bc2e68
--- /dev/null
+++ b/m4/error.m4
@@ -0,0 +1,15 @@
1#serial 9
2
3AC_DEFUN([gl_ERROR],
4[
5 AC_FUNC_ERROR_AT_LINE
6 dnl Note: AC_FUNC_ERROR_AT_LINE does AC_LIBSOURCES([error.h, error.c]).
7 jm_PREREQ_ERROR
8])
9
10# Prerequisites of lib/error.c.
11AC_DEFUN([jm_PREREQ_ERROR],
12[
13 AC_REQUIRE([AC_FUNC_STRERROR_R])
14 :
15])