~ubuntu-branches/ubuntu/saucy/m17n-lib/saucy

« back to all changes in this revision

Viewing changes to m4/intmax.m4

  • Committer: Bazaar Package Importer
  • Author(s): Harshula Jayasuriya
  • Date: 2010-11-23 01:39:29 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101123013929-rs3kpqgu4kr3qx32
Tags: 1.6.2-1
* New upstream release 1.6.2.
* Update Standards-Version to Debian Policy 3.9.1. (No changes)
* debian/control: Depends: m17n-db and m17n-contrib. (Closes: #599643)
* PATCH: (make_locale): Don't call setlocale.  Just parse the arg NAME.
         (Closes: #601858)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# intmax.m4 serial 2 (gettext-0.14.2)
 
1
# intmax.m4 serial 3 (gettext-0.16)
2
2
dnl Copyright (C) 2002-2005 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
22
22
#if HAVE_INTTYPES_H_WITH_UINTMAX
23
23
#include <inttypes.h>
24
24
#endif
25
 
], [intmax_t x = -1;], gt_cv_c_intmax_t=yes, gt_cv_c_intmax_t=no)])
 
25
],     [intmax_t x = -1;
 
26
        return !x;],
 
27
       gt_cv_c_intmax_t=yes,
 
28
       gt_cv_c_intmax_t=no)])
26
29
  if test $gt_cv_c_intmax_t = yes; then
27
30
    AC_DEFINE(HAVE_INTMAX_T, 1,
28
31
      [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.])