strsep.m4 720 B

1234567891011121314151617181920212223
  1. # strsep.m4 serial 10
  2. dnl Copyright (C) 2002-2004, 2007, 2009-2015 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_STRSEP],
  7. [
  8. dnl Persuade glibc <string.h> to declare strsep().
  9. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  10. dnl The strsep() 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([strsep])
  14. if test $ac_cv_func_strsep = no; then
  15. HAVE_STRSEP=0
  16. fi
  17. ])
  18. # Prerequisites of lib/strsep.c.
  19. AC_DEFUN([gl_PREREQ_STRSEP], [:])