comparison m4/strcase.m4 @ 272:d5392bb5da3c 2.5

Added generated files
author lost
date Sun, 16 Aug 2009 17:16:49 +0000
parents
children
comparison
equal deleted inserted replaced
271:3b793ba7a6c6 272:d5392bb5da3c
1 # strcase.m4 serial 9
2 dnl Copyright (C) 2002, 2005-2008 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 AC_REQUIRE([gl_HEADER_STRINGS_H_DEFAULTS])
16 AC_REPLACE_FUNCS(strcasecmp)
17 if test $ac_cv_func_strcasecmp = no; then
18 HAVE_STRCASECMP=0
19 gl_PREREQ_STRCASECMP
20 fi
21 ])
22
23 AC_DEFUN([gl_FUNC_STRNCASECMP],
24 [
25 AC_REQUIRE([gl_HEADER_STRINGS_H_DEFAULTS])
26 AC_REPLACE_FUNCS(strncasecmp)
27 if test $ac_cv_func_strncasecmp = no; then
28 gl_PREREQ_STRNCASECMP
29 fi
30 AC_CHECK_DECLS(strncasecmp)
31 if test $ac_cv_have_decl_strncasecmp = no; then
32 HAVE_DECL_STRNCASECMP=0
33 fi
34 ])
35
36 # Prerequisites of lib/strcasecmp.c.
37 AC_DEFUN([gl_PREREQ_STRCASECMP], [
38 :
39 ])
40
41 # Prerequisites of lib/strncasecmp.c.
42 AC_DEFUN([gl_PREREQ_STRNCASECMP], [
43 :
44 ])