* doc/gnulib-tool.texi (Initial import): Update to match current
[gnulib.git] / m4 / strcase.m4
1 # strcase.m4 serial 5
2 dnl Copyright (C) 2002, 2005-2007 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
7 AC_DEFUN([gl_STRCASE],
8 [
9   gl_FUNC_STRCASECMP
10   gl_FUNC_STRNCASECMP
11 ])
12
13 AC_DEFUN([gl_FUNC_STRCASECMP],
14 [
15   dnl No known system has a strcasecmp() function that works correctly in
16   dnl multibyte locales. Therefore we use our version always.
17   AC_LIBOBJ(strcasecmp)
18   gl_PREREQ_STRCASECMP
19   REPLACE_STRCASECMP=1
20 ])
21
22 AC_DEFUN([gl_FUNC_STRNCASECMP],
23 [
24   AC_REPLACE_FUNCS(strncasecmp)
25   if test $ac_cv_func_strncasecmp = no; then
26     gl_PREREQ_STRNCASECMP
27   fi
28   AC_CHECK_DECLS(strncasecmp)
29   if test $ac_cv_have_decl_strncasecmp = no; then
30     HAVE_DECL_STRNCASECMP=0
31   fi
32 ])
33
34 # Prerequisites of lib/strcasecmp.c.
35 AC_DEFUN([gl_PREREQ_STRCASECMP], [
36   AC_REQUIRE([gl_FUNC_MBRTOWC])
37   :
38 ])
39
40 # Prerequisites of lib/strncasecmp.c.
41 AC_DEFUN([gl_PREREQ_STRNCASECMP], [
42   :
43 ])