error.m4 557 B

12345678910111213141516171819202122
  1. #serial 12
  2. # Copyright (C) 1996-1998, 2001-2004, 2009-2010 Free Software Foundation, Inc.
  3. #
  4. # This file is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. AC_DEFUN([gl_ERROR],
  8. [
  9. AC_FUNC_ERROR_AT_LINE
  10. dnl Note: AC_FUNC_ERROR_AT_LINE does AC_LIBSOURCES([error.h, error.c]).
  11. gl_PREREQ_ERROR
  12. ])
  13. # Prerequisites of lib/error.c.
  14. AC_DEFUN([gl_PREREQ_ERROR],
  15. [
  16. AC_REQUIRE([AC_FUNC_STRERROR_R])
  17. AC_REQUIRE([AC_C_INLINE])
  18. :
  19. ])