diff options
author | Jim Meyering <jim@meyering.net> | 1999-10-30 08:08:57 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-10-30 08:08:57 +0000 |
commit | 979fe5dc9a5a6420c1e70a445d7967bf1f7c66b3 (patch) | |
tree | acafe6a4ca0b869d541451049f1288f926541884 | |
parent | ec5d352d55467228d2fc290660c23ba5e58b613b (diff) | |
download | coreutils-979fe5dc9a5a6420c1e70a445d7967bf1f7c66b3.tar.xz |
Use new AC_TYPE_SSIZE_T instead of my hacked AC_CHECK_TYPE.
Require 2.14a. Remove backslash before backtick in m4-quoted string.
-rw-r--r-- | m4/jm-macros.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index 1eb9c598f..58f0fc93c 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -1,14 +1,14 @@ -#serial 8 +#serial 9 dnl Misc type-related macros for fileutils, sh-utils, textutils. AC_DEFUN(jm_MACROS, [ - AC_PREREQ(2.13) dnl Minimum Autoconf version required. + AC_PREREQ(2.14a) GNU_PACKAGE="GNU $PACKAGE" AC_DEFINE_UNQUOTED(GNU_PACKAGE, "$GNU_PACKAGE", - [The concatenation of the strings \`GNU ', and PACKAGE.]) + [The concatenation of the strings `GNU ', and PACKAGE.]) AC_SUBST(GNU_PACKAGE) dnl This macro actually runs replacement code. See isc-posix.m4. @@ -77,7 +77,7 @@ AC_DEFUN(jm_CHECK_ALL_TYPES, AC_TYPE_SIZE_T AC_TYPE_UID_T AC_CHECK_TYPE(ino_t, unsigned long) - AC_CHECK_TYPE(ssize_t, int) + AC_TYPE_SSIZE_T, AC_REQUIRE([jm_AC_TYPE_UINTMAX_T]) AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) ]) |