4
0

error.m4 346 B

12345678910111213
  1. #serial 4
  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_FUNC_STRERROR_R
  10. AC_HEADER_STDC
  11. ])