Files
bison/m4/error.m4
Paul Eggert f61aad9399 Merge changes from gnulib. This was prompted because the CVS
snapshot of Bison didn't build on Solaris 7 due to strnlen problems.
2003-03-12 23:08:11 +00:00

21 lines
418 B
Plaintext

#serial 5
AC_DEFUN([gl_ERROR],
[
AC_FUNC_ERROR_AT_LINE
dnl Note: AC_FUNC_ERROR_AT_LINE does AC_LIBSOURCES([error.h, error.c]).
if test $ac_cv_lib_error_at_line = no; then
jm_PREREQ_ERROR
fi
])
# Prerequisites of lib/error.c.
AC_DEFUN([jm_PREREQ_ERROR],
[
AC_REQUIRE([AC_HEADER_STDC])
AC_CHECK_FUNCS_ONCE(doprnt vprintf)
AC_CHECK_FUNCS(strerror)
AC_CHECK_DECLS([strerror])
AC_FUNC_STRERROR_R
])