cbd47775afed071dca16903c4645e0a0c8d79256
[gnulib.git] / m4 / strtok_r.m4
1 # strtok_r.m4 serial 10
2 dnl Copyright (C) 2002-2004, 2006-2007, 2009-2010 Free Software Foundation,
3 dnl Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7
8 AC_DEFUN([gl_FUNC_STRTOK_R],
9 [
10   dnl The strtok_r() declaration in lib/string.in.h uses 'restrict'.
11   AC_REQUIRE([AC_C_RESTRICT])
12
13   AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
14   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
15   AC_CHECK_FUNCS([strtok_r])
16   if test $ac_cv_func_strtok_r = yes; then
17     dnl glibc 2.7 has a bug in strtok_r that causes a segmentation fault
18     dnl when the second argument to strtok_r is a constant string that has
19     dnl exactly one byte and compiling with optimization.  This bug is, for
20     dnl example, present in the glibc 2.7-18 package in Debian "lenny".
21     dnl See <http://sources.redhat.com/bugzilla/show_bug.cgi?id=5614>.
22     AC_CACHE_CHECK([whether strtok_r works], [gl_cv_func_strtok_r_works],
23       [AC_RUN_IFELSE(
24          [AC_LANG_PROGRAM([[
25               #ifndef __OPTIMIZE__
26               # define __OPTIMIZE__ 1
27               #endif
28               #undef __OPTIMIZE_SIZE__
29               #undef __NO_INLINE__
30               #include <stdlib.h>
31               #include <string.h>
32             ]],
33             [[char delimiters[] = "xxxxxxxx";
34               char *save_ptr = (char *) 0xd0d0;
35               strtok_r (delimiters, "x", &save_ptr);
36               strtok_r (NULL, "x", &save_ptr);
37               return 0;
38             ]])
39          ],
40          [gl_cv_func_strtok_r_works=yes],
41          [gl_cv_func_strtok_r_works=no],
42          [
43 changequote(,)dnl
44           case "$host_os" in
45                     # Guess no on glibc systems.
46             *-gnu*) gl_cv_func_strtok_r_works="guessing no";;
47             *)      gl_cv_func_strtok_r_works="guessing yes";;
48           esac
49 changequote([,])dnl
50          ])
51       ])
52     case "$gl_cv_func_strtok_r_works" in
53       *no)
54         dnl We could set REPLACE_STRTOK_R=1 and AC_LIBOBJ([strtok_r]) here,
55         dnl but it's only the macro version in <bits/string2.h> which is wrong.
56         dnl The code compiled into libc is fine.
57         UNDEFINE_STRTOK_R=1
58         ;;
59     esac
60   else
61     AC_LIBOBJ([strtok_r])
62     gl_PREREQ_STRTOK_R
63   fi
64   AC_CHECK_DECLS_ONCE([strtok_r])
65   if test $ac_cv_have_decl_strtok_r = no; then
66     HAVE_DECL_STRTOK_R=0
67   fi
68 ])
69
70 # Prerequisites of lib/strtok_r.c.
71 AC_DEFUN([gl_PREREQ_STRTOK_R], [
72   :
73 ])