~ubuntu-branches/ubuntu/utopic/parted/utopic-proposed

« back to all changes in this revision

Viewing changes to m4/strcase.m4

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-07-21 10:23:16 UTC
  • mfrom: (7.2.32 sid)
  • Revision ID: package-import@ubuntu.com-20140721102316-jsyv3yzmbo8vlde5
Tags: 3.1-3
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# strcase.m4 serial 11
 
2
dnl Copyright (C) 2002, 2005-2012 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_CHECK_FUNCS([strcasecmp])
 
17
  if test $ac_cv_func_strcasecmp = no; then
 
18
    HAVE_STRCASECMP=0
 
19
  fi
 
20
])
 
21
 
 
22
AC_DEFUN([gl_FUNC_STRNCASECMP],
 
23
[
 
24
  AC_REQUIRE([gl_HEADER_STRINGS_H_DEFAULTS])
 
25
  AC_CHECK_FUNCS([strncasecmp])
 
26
  if test $ac_cv_func_strncasecmp = yes; then
 
27
    HAVE_STRNCASECMP=1
 
28
  else
 
29
    HAVE_STRNCASECMP=0
 
30
  fi
 
31
  AC_CHECK_DECLS([strncasecmp])
 
32
  if test $ac_cv_have_decl_strncasecmp = no; then
 
33
    HAVE_DECL_STRNCASECMP=0
 
34
  fi
 
35
])
 
36
 
 
37
# Prerequisites of lib/strcasecmp.c.
 
38
AC_DEFUN([gl_PREREQ_STRCASECMP], [
 
39
  :
 
40
])
 
41
 
 
42
# Prerequisites of lib/strncasecmp.c.
 
43
AC_DEFUN([gl_PREREQ_STRNCASECMP], [
 
44
  :
 
45
])