diff options
author | Jim Meyering <jim@meyering.net> | 2002-09-25 12:52:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-09-25 12:52:24 +0000 |
commit | 0b797ed05677fd7000d1ea84072ae5b83741a855 (patch) | |
tree | f7423cbfb2a84ac60369cae52cd78a827c5f7aa1 | |
parent | 619a52f976798af062ca3d1da2a42d5106ff7845 (diff) | |
download | coreutils-0b797ed05677fd7000d1ea84072ae5b83741a855.tar.xz |
(gt_INTTYPES_PRI): New file, mostly from gettext.
-rw-r--r-- | m4/inttypes-pri.m4 | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/m4/inttypes-pri.m4 b/m4/inttypes-pri.m4 index fd007c312..f931b0098 100644 --- a/m4/inttypes-pri.m4 +++ b/m4/inttypes-pri.m4 @@ -1,4 +1,4 @@ -# inttypes-pri.m4 serial 1 (gettext-0.11.4) +# inttypes-pri.m4 serial 1001 (based on gettext-0.11.4's `serial 1') dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General @@ -13,8 +13,10 @@ dnl From Bruno Haible. AC_DEFUN([gt_INTTYPES_PRI], [ - AC_REQUIRE([gt_HEADER_INTTYPES_H]) - if test $gt_cv_header_inttypes_h = yes; then + # autoconf-2.52 has a proper check for inttypes.h. + AC_PREREQ(2.52) + + if test $ac_cv_header_inttypes_h = yes; then AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], gt_cv_inttypes_pri_broken, [ |