error.m4 378 B

1234567891011121314
  1. #serial 5
  2. dnl FIXME: put these prerequisite-only *.m4 files in a separate
  3. dnl directory -- otherwise, they'll conflict with existing files.
  4. dnl These are the prerequisite macros for GNU's error.c file.
  5. AC_DEFUN([jm_PREREQ_ERROR],
  6. [
  7. AC_CHECK_FUNCS(strerror vprintf doprnt)
  8. AC_CHECK_DECLS([strerror])
  9. AC_CHECK_HEADERS([libintl.h])
  10. AC_FUNC_STRERROR_R
  11. AC_HEADER_STDC
  12. ])