diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-15 09:22:57 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-15 10:19:08 (GMT) |
commit | 71cdb52799220f8d9052643baf1d3e9836a9c755 (patch) | |
tree | 27aee97a35d9ab51f0d8f64a46690bd41a5f8c1b /gl/m4/intmax_t.m4 | |
parent | f7afa46586645e50498d8b2d0c67884f014dc3a4 (diff) | |
download | monitoring-plugins-71cdb52799220f8d9052643baf1d3e9836a9c755.tar.gz |
Sync with gnulib
Diffstat (limited to 'gl/m4/intmax_t.m4')
-rw-r--r-- | gl/m4/intmax_t.m4 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gl/m4/intmax_t.m4 b/gl/m4/intmax_t.m4 index 50ae35d..264cb57 100644 --- a/gl/m4/intmax_t.m4 +++ b/gl/m4/intmax_t.m4 | |||
@@ -1,12 +1,12 @@ | |||
1 | # intmax_t.m4 serial 6 | 1 | # intmax_t.m4 serial 7 |
2 | dnl Copyright (C) 1997-2004, 2006-2007 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc. |
3 | dnl This file is free software; the Free Software Foundation | 3 | dnl This file is free software; the Free Software Foundation |
4 | dnl gives unlimited permission to copy and/or distribute it, | 4 | dnl gives unlimited permission to copy and/or distribute it, |
5 | dnl with or without modifications, as long as this notice is preserved. | 5 | dnl with or without modifications, as long as this notice is preserved. |
6 | 6 | ||
7 | dnl From Paul Eggert. | 7 | dnl From Paul Eggert. |
8 | 8 | ||
9 | AC_PREREQ(2.13) | 9 | AC_PREREQ([2.13]) |
10 | 10 | ||
11 | # Define intmax_t to 'long' or 'long long' | 11 | # Define intmax_t to 'long' or 'long long' |
12 | # if it is not already defined in <stdint.h> or <inttypes.h>. | 12 | # if it is not already defined in <stdint.h> or <inttypes.h>. |
@@ -22,10 +22,10 @@ AC_DEFUN([gl_AC_TYPE_INTMAX_T], | |||
22 | test $ac_cv_type_long_long_int = yes \ | 22 | test $ac_cv_type_long_long_int = yes \ |
23 | && ac_type='long long' \ | 23 | && ac_type='long long' \ |
24 | || ac_type='long' | 24 | || ac_type='long' |
25 | AC_DEFINE_UNQUOTED(intmax_t, $ac_type, | 25 | AC_DEFINE_UNQUOTED([intmax_t], [$ac_type], |
26 | [Define to long or long long if <inttypes.h> and <stdint.h> don't define.]) | 26 | [Define to long or long long if <inttypes.h> and <stdint.h> don't define.]) |
27 | else | 27 | else |
28 | AC_DEFINE(HAVE_INTMAX_T, 1, | 28 | AC_DEFINE([HAVE_INTMAX_T], [1], |
29 | [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.]) | 29 | [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.]) |
30 | fi | 30 | fi |
31 | ]) | 31 | ]) |
@@ -36,7 +36,7 @@ AC_DEFUN([gt_AC_TYPE_INTMAX_T], | |||
36 | [ | 36 | [ |
37 | AC_REQUIRE([gl_AC_HEADER_INTTYPES_H]) | 37 | AC_REQUIRE([gl_AC_HEADER_INTTYPES_H]) |
38 | AC_REQUIRE([gl_AC_HEADER_STDINT_H]) | 38 | AC_REQUIRE([gl_AC_HEADER_STDINT_H]) |
39 | AC_CACHE_CHECK(for intmax_t, gt_cv_c_intmax_t, | 39 | AC_CACHE_CHECK([for intmax_t], [gt_cv_c_intmax_t], |
40 | [AC_TRY_COMPILE([ | 40 | [AC_TRY_COMPILE([ |
41 | #include <stddef.h> | 41 | #include <stddef.h> |
42 | #include <stdlib.h> | 42 | #include <stdlib.h> |
@@ -48,14 +48,14 @@ AC_DEFUN([gt_AC_TYPE_INTMAX_T], | |||
48 | #endif | 48 | #endif |
49 | ], [intmax_t x = -1; return !x;], gt_cv_c_intmax_t=yes, gt_cv_c_intmax_t=no)]) | 49 | ], [intmax_t x = -1; return !x;], gt_cv_c_intmax_t=yes, gt_cv_c_intmax_t=no)]) |
50 | if test $gt_cv_c_intmax_t = yes; then | 50 | if test $gt_cv_c_intmax_t = yes; then |
51 | AC_DEFINE(HAVE_INTMAX_T, 1, | 51 | AC_DEFINE([HAVE_INTMAX_T], [1], |
52 | [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.]) | 52 | [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.]) |
53 | else | 53 | else |
54 | AC_REQUIRE([AC_TYPE_LONG_LONG_INT]) | 54 | AC_REQUIRE([AC_TYPE_LONG_LONG_INT]) |
55 | test $ac_cv_type_long_long_int = yes \ | 55 | test $ac_cv_type_long_long_int = yes \ |
56 | && ac_type='long long' \ | 56 | && ac_type='long long' \ |
57 | || ac_type='long' | 57 | || ac_type='long' |
58 | AC_DEFINE_UNQUOTED(intmax_t, $ac_type, | 58 | AC_DEFINE_UNQUOTED([intmax_t], [$ac_type], |
59 | [Define to long or long long if <stdint.h> and <inttypes.h> don't define.]) | 59 | [Define to long or long long if <stdint.h> and <inttypes.h> don't define.]) |
60 | fi | 60 | fi |
61 | ]) | 61 | ]) |