summaryrefslogtreecommitdiff
path: root/m4/strstr.m4
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-09-22 06:44:26 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-09-22 06:44:26 +0000
commiteba2793d1131e5c03d6357d5a727120340836e8f (patch)
tree992c967b6e97d1793e15adfe32bda95b67b9c8f1 /m4/strstr.m4
parentda6ced865126d933c839f19ce9dd002b71d1d5a3 (diff)
downloadcoreutils-eba2793d1131e5c03d6357d5a727120340836e8f.tar.xz
Nontrivial sync from gnulib.
Diffstat (limited to 'm4/strstr.m4')
-rw-r--r--m4/strstr.m416
1 files changed, 9 insertions, 7 deletions
diff --git a/m4/strstr.m4 b/m4/strstr.m4
index 0fe0f73cd..aea809ebd 100644
--- a/m4/strstr.m4
+++ b/m4/strstr.m4
@@ -1,16 +1,18 @@
-# strstr.m4 serial 2
-dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
+# strstr.m4 serial 4
+dnl Copyright (C) 2002-2003, 2005 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([gl_FUNC_STRSTR],
[
- AC_REPLACE_FUNCS(strstr)
- if test $ac_cv_func_strstr = no; then
- gl_PREREQ_STRSTR
- fi
+ dnl No known system has a strstr() function that works correctly in
+ dnl multibyte locales. Therefore we use our version always.
+ AC_LIBOBJ(strstr)
+ gl_PREREQ_STRSTR
])
# Prerequisites of lib/strstr.c.
-AC_DEFUN([gl_PREREQ_STRSTR], [:])
+AC_DEFUN([gl_PREREQ_STRSTR], [
+ gl_FUNC_MBRTOWC
+])