~ubuntu-branches/ubuntu/gutsy/renameutils/gutsy

« back to all changes in this revision

Viewing changes to m4/getdelim.m4

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2006-07-21 16:39:15 UTC
  • mfrom: (1.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060721163915-k3kqs080hol8uw1n
Tags: 0.8.1-4
* Enable large file support on 32-bit platforms (closes: #377845)
* Bump Standards-Version up to 3.7.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# getdelim.m4 serial 1
 
2
 
 
3
dnl Copyright (C) 2005 Free Software dnl Foundation, Inc.
 
4
dnl
 
5
dnl This file is free software; the Free Software Foundation
 
6
dnl gives unlimited permission to copy and/or distribute it,
 
7
dnl with or without modifications, as long as this notice is preserved.
 
8
 
 
9
AC_PREREQ(2.52)
 
10
 
 
11
AC_DEFUN([gl_FUNC_GETDELIM],
 
12
[
 
13
  AC_LIBSOURCES([getdelim.c, getdelim.h])
 
14
 
 
15
  dnl Persuade glibc <stdio.h> to declare getdelim().
 
16
  AC_REQUIRE([AC_GNU_SOURCE])
 
17
 
 
18
  AC_REPLACE_FUNCS(getdelim)
 
19
  AC_CHECK_DECLS_ONCE(getdelim)
 
20
 
 
21
  if test $ac_cv_func_getdelim = no; then
 
22
    gl_PREREQ_GETDELIM
 
23
  fi
 
24
])
 
25
 
 
26
# Prerequisites of lib/getdelim.c.
 
27
AC_DEFUN([gl_PREREQ_GETDELIM],
 
28
[
 
29
  AC_CHECK_FUNCS([flockfile funlockfile])
 
30
])