diff options
author | Bruno Haible <bruno@clisp.org> | 2001-01-05 13:47:56 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2001-01-05 13:47:56 +0000 |
commit | 7b401e094dc64e9054af2f09ec2741c8c835929b (patch) | |
tree | 5ad0bc1b986626cfd7c03ba2e0ab785b601a0c0b /configure.in | |
parent | eaf396d26252324da43cfc02edef4163af4c8f5a (diff) | |
download | external_gettext-7b401e094dc64e9054af2f09ec2741c8c835929b.zip external_gettext-7b401e094dc64e9054af2f09ec2741c8c835929b.tar.gz external_gettext-7b401e094dc64e9054af2f09ec2741c8c835929b.tar.bz2 |
New autoconf macros for detecting long integer types.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 64118c3..0ee90f1 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.12) -AC_REVISION($Revision: 1.4 $) +AC_REVISION($Revision: 1.5 $) AC_INIT(src/msgfmt.c) AM_INIT_AUTOMAKE(gettext, 0.10.36) AM_CONFIG_HEADER(config.h) @@ -28,9 +28,11 @@ dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_C_BACKSLASH_A +jm_AC_TYPE_UNSIGNED_LONG_LONG AC_TYPE_OFF_T AC_TYPE_SIZE_T AM_TYPE_PTRDIFF_T +jm_AC_TYPE_UINTMAX_T dnl Checks for library functions. AC_FUNC_ALLOCA |