]> git.saurik.com Git - bison.git/blobdiff - m4/error.m4
* data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
[bison.git] / m4 / error.m4
index 3fddb5c1115509baa246f7db9518c180c5976deb..14e23a71f71c5ba5f4df6b0a2f342cb0d8e48fcf 100644 (file)
@@ -1,13 +1,18 @@
-#serial 4
+#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_FUNC_STRERROR_R
-  AC_HEADER_STDC
 ])