wmemchr.m4 845 B

12345678910111213141516171819202122232425
  1. # wmemchr.m4 serial 5
  2. dnl Copyright (C) 2011-2021 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_WMEMCHR],
  7. [
  8. AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
  9. dnl We cannot use AC_CHECK_FUNCS here, because the MSVC 9 header files
  10. dnl provide this function as an inline function definition.
  11. AC_CACHE_CHECK([for wmemchr], [gl_cv_func_wmemchr],
  12. [AC_LINK_IFELSE(
  13. [AC_LANG_PROGRAM(
  14. [[#include <wchar.h>
  15. ]],
  16. [[return ! wmemchr ((const wchar_t *) 0, (wchar_t) ' ', 0);]])
  17. ],
  18. [gl_cv_func_wmemchr=yes],
  19. [gl_cv_func_wmemchr=no])
  20. ])
  21. if test $gl_cv_func_wmemchr = no; then
  22. HAVE_WMEMCHR=0
  23. fi
  24. ])