~ubuntu-branches/ubuntu/gutsy/findutils/gutsy-proposed

« back to all changes in this revision

Viewing changes to gnulib/m4/error.m4

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2005-07-04 11:37:37 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050704113737-ll89ui8be35r0pir
Tags: 4.2.22-2
* Remove locatedb on purge. (Closes: #315343)
* revert regex-syntax back to emacs-re. (Closes: #315136) Future versions
  will allow to select this by commandline parameter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#serial 7
 
1
#serial 11
 
2
 
 
3
# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software
 
4
# Foundation, Inc.
 
5
#
 
6
# This file is free software; the Free Software Foundation
 
7
# gives unlimited permission to copy and/or distribute it,
 
8
# with or without modifications, as long as this notice is preserved.
2
9
 
3
10
AC_DEFUN([gl_ERROR],
4
11
[
5
12
  AC_FUNC_ERROR_AT_LINE
6
13
  dnl Note: AC_FUNC_ERROR_AT_LINE does AC_LIBSOURCES([error.h, error.c]).
7
 
  jm_PREREQ_ERROR
 
14
  gl_PREREQ_ERROR
8
15
])
9
16
 
10
17
# Prerequisites of lib/error.c.
11
 
AC_DEFUN([jm_PREREQ_ERROR],
 
18
AC_DEFUN([gl_PREREQ_ERROR],
12
19
[
13
 
  AC_REQUIRE([AC_HEADER_STDC])
14
 
  AC_REQUIRE([AC_FUNC_VPRINTF])
15
 
  AC_CHECK_FUNCS(strerror)
16
 
  AC_CHECK_DECLS([strerror])
17
 
  AC_FUNC_STRERROR_R
 
20
  AC_REQUIRE([AC_FUNC_STRERROR_R])
 
21
  :
18
22
])