strnlen.m4 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. # strnlen.m4 serial 10
  2. dnl Copyright (C) 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. AC_DEFUN([gl_FUNC_STRNLEN],
  7. [
  8. dnl Persuade glibc <string.h> to declare strnlen().
  9. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  10. AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
  11. AC_CHECK_DECLS_ONCE([strnlen])
  12. if test $ac_cv_have_decl_strnlen = no; then
  13. HAVE_DECL_STRNLEN=0
  14. fi
  15. AC_FUNC_STRNLEN
  16. if test $ac_cv_func_strnlen_working = no; then
  17. # This is necessary because automake-1.6.1 doesn't understand
  18. # that the above use of AC_FUNC_STRNLEN means we may have to use
  19. # lib/strnlen.c.
  20. #AC_LIBOBJ([strnlen])
  21. AC_DEFINE([strnlen], [rpl_strnlen],
  22. [Define to rpl_strnlen if the replacement function should be used.])
  23. gl_PREREQ_STRNLEN
  24. fi
  25. ])
  26. # Prerequisites of lib/strnlen.c.
  27. AC_DEFUN([gl_PREREQ_STRNLEN], [:])