comparison m4/strcase.m4 @ 434:b8bf63962a99 3.0

Added various generated files for release
author lost@l-w.ca
date Fri, 29 Oct 2010 19:20:39 -0600
parents
children
comparison
equal deleted inserted replaced
433:b142b473f0ee 434:b8bf63962a99
1 # strcase.m4 serial 10
2 dnl Copyright (C) 2002, 2005-2010 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 ])