Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / gpl2 / xcvs / dist / m4 / strcase.m4
blob8a8ff3a451cf8afff9506be1d6691a90097e790e
1 # strcase.m4 serial 2
2 dnl Copyright (C) 2002, 2005 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.
7 AC_DEFUN([gl_STRCASE],
9   gl_FUNC_STRCASECMP
10   gl_FUNC_STRNCASECMP
13 AC_DEFUN([gl_FUNC_STRCASECMP],
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   AC_DEFINE(strcasecmp, rpl_strcasecmp, [Define to rpl_strcasecmp always.])
19   gl_PREREQ_STRCASECMP
22 AC_DEFUN([gl_FUNC_STRNCASECMP],
24   AC_REPLACE_FUNCS(strncasecmp)
25   if test $ac_cv_func_strncasecmp = no; then
26     gl_PREREQ_STRNCASECMP
27   fi
30 # Prerequisites of lib/strcasecmp.c.
31 AC_DEFUN([gl_PREREQ_STRCASECMP], [
32   gl_FUNC_MBRTOWC
35 # Prerequisites of lib/strncasecmp.c.
36 AC_DEFUN([gl_PREREQ_STRNCASECMP], [
37   :