error.m4 540 B

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