+2019-12-13 Bruno Haible <bruno@clisp.org>
+
+ wcstok: Fix test failure on HP-UX.
+ * m4/wcstok.m4 (gl_FUNC_WCSTOK): Set REPLACE_WCSTOK to 1 on HP-UX.
+ * doc/posix-functions/wcstok.texi: Mention the HP-UX bug.
+
2019-12-12 Bruno Haible <bruno@clisp.org>
strtod, strtold tests: Avoid test failure on AIX 7.2.
-# wcstok.m4 serial 3
+# wcstok.m4 serial 4
dnl Copyright (C) 2011-2019 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
AC_DEFUN([gl_FUNC_WCSTOK],
[
AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+ AC_REQUIRE([AC_CANONICAL_HOST])
AC_CHECK_FUNCS_ONCE([wcstok])
if test $ac_cv_func_wcstok = yes; then
- dnl POSIX: wchar_t *wcstok (wchar_t *, const wchar_t *, wchar_t **);
- dnl mingw, MSVC: wchar_t *wcstok (wchar_t *, const wchar_t *);
- AC_CACHE_CHECK([for wcstok with POSIX signature],
- [gl_cv_func_wcstok_posix_signature],
- [AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[
+ dnl On HP-UX 11.31, it depends on the compiler and linker whether wcstok()
+ dnl uses hidden state, ignoring the third argument, and thus exhibits a
+ dnl bug when two or more wcstok() iteration loops are being performed in
+ dnl the same thread.
+ case "$host_os" in
+ hpux*)
+ REPLACE_WCSTOK=1
+ ;;
+ *)
+ dnl POSIX: wchar_t *wcstok (wchar_t *, const wchar_t *, wchar_t **);
+ dnl mingw, MSVC: wchar_t *wcstok (wchar_t *, const wchar_t *);
+ AC_CACHE_CHECK([for wcstok with POSIX signature],
+ [gl_cv_func_wcstok_posix_signature],
+ [AC_COMPILE_IFELSE(
+ [AC_LANG_PROGRAM(
+ [[
/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
<wchar.h>.
BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
#include <wchar.h>
wchar_t *wcstok (wchar_t *, const wchar_t *, wchar_t **);
]],
- [])],
- [gl_cv_func_wcstok_posix_signature=yes],
- [gl_cv_func_wcstok_posix_signature=no])
- ])
- if test $gl_cv_func_wcstok_posix_signature = no; then
- REPLACE_WCSTOK=1
- fi
+ [])],
+ [gl_cv_func_wcstok_posix_signature=yes],
+ [gl_cv_func_wcstok_posix_signature=no])
+ ])
+ if test $gl_cv_func_wcstok_posix_signature = no; then
+ REPLACE_WCSTOK=1
+ fi
+ ;;
+ esac
else
HAVE_WCSTOK=0
fi