~ubuntu-branches/ubuntu/feisty/icoutils/feisty

« back to all changes in this revision

Viewing changes to m4/strcase.m4

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2005-05-26 15:15:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050526151536-uzg8vlhedkx1nwcx
Tags: 0.25.0-1
* New upstream release.
  - 'make distclean' fixed; revert workarounds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# strcase.m4 serial 1
 
2
dnl Copyright (C) 2002 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_REPLACE_FUNCS(strcasecmp)
 
16
  if test $ac_cv_func_strcasecmp = no; then
 
17
    gl_PREREQ_STRCASECMP
 
18
  fi
 
19
])
 
20
 
 
21
AC_DEFUN([gl_FUNC_STRNCASECMP],
 
22
[
 
23
  AC_REPLACE_FUNCS(strncasecmp)
 
24
  if test $ac_cv_func_strncasecmp = no; then
 
25
    gl_PREREQ_STRNCASECMP
 
26
  fi
 
27
])
 
28
 
 
29
# Prerequisites of lib/strcasecmp.c.
 
30
AC_DEFUN([gl_PREREQ_STRCASECMP], [
 
31
  :
 
32
])
 
33
 
 
34
# Prerequisites of lib/strncasecmp.c.
 
35
AC_DEFUN([gl_PREREQ_STRNCASECMP], [
 
36
  :
 
37
])