~ubuntu-branches/ubuntu/natty/diffutils/natty

« back to all changes in this revision

Viewing changes to m4/strcase.m4

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2010-05-04 20:38:00 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100504203800-f67xd9rsa9xl9qqj
Tags: 1:3.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
])