stpcpy.m4 718 B

1234567891011121314151617181920212223242526
  1. # stpcpy.m4 serial 8
  2. dnl Copyright (C) 2002, 2007, 2009-2017 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_STPCPY],
  7. [
  8. dnl Persuade glibc <string.h> to declare stpcpy().
  9. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  10. dnl The stpcpy() declaration in lib/string.in.h uses 'restrict'.
  11. AC_REQUIRE([AC_C_RESTRICT])
  12. AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
  13. AC_CHECK_FUNCS([stpcpy])
  14. if test $ac_cv_func_stpcpy = no; then
  15. HAVE_STPCPY=0
  16. fi
  17. ])
  18. # Prerequisites of lib/stpcpy.c.
  19. AC_DEFUN([gl_PREREQ_STPCPY], [
  20. :
  21. ])