~ubuntu-branches/ubuntu/karmic/findutils/karmic

« back to all changes in this revision

Viewing changes to gnulib/m4/strtoimax.m4

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-02-08 12:31:14 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080208123114-r10wogrqrq6lck12
Tags: 4.2.32-1ubuntu1
* Merge with Debian; remaining changes:
  - debian/locate-cron.daily: Test if called by root (LP: #147911),
    add /var/lib/schroot/mount to PRUNEPATHS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
  AC_REQUIRE([AC_PROG_EGREP])
12
12
 
13
13
  AC_CACHE_CHECK([whether <inttypes.h> defines strtoimax as a macro],
14
 
    jm_cv_func_strtoimax_macro,
 
14
    gl_cv_func_strtoimax_macro,
15
15
    [AC_EGREP_CPP([inttypes_h_defines_strtoimax], [#include <inttypes.h>
16
16
#ifdef strtoimax
17
17
 inttypes_h_defines_strtoimax
18
18
#endif],
19
 
       jm_cv_func_strtoimax_macro=yes,
20
 
       jm_cv_func_strtoimax_macro=no)])
 
19
       gl_cv_func_strtoimax_macro=yes,
 
20
       gl_cv_func_strtoimax_macro=no)])
21
21
 
22
 
  if test "$jm_cv_func_strtoimax_macro" != yes; then
 
22
  if test "$gl_cv_func_strtoimax_macro" != yes; then
23
23
    AC_REPLACE_FUNCS(strtoimax)
24
24
    if test $ac_cv_func_strtoimax = no; then
25
25
      gl_PREREQ_STRTOIMAX