diff options
author | Bruno Haible <bruno@clisp.org> | 2003-02-14 12:58:26 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:09:23 +0200 |
commit | abda3d58375f1236e21e5f0e44f24143cd0c37d3 (patch) | |
tree | 3aae5c2c22d9b24bccc45de836de9ab484438ab2 /m4 | |
parent | e1bd094b75b6f1f8f69e49deb810e7ac92cc921c (diff) | |
download | external_gettext-abda3d58375f1236e21e5f0e44f24143cd0c37d3.zip external_gettext-abda3d58375f1236e21e5f0e44f24143cd0c37d3.tar.gz external_gettext-abda3d58375f1236e21e5f0e44f24143cd0c37d3.tar.bz2 |
Move m4/uintmax_t.m4 to gettext-runtime/m4/uintmax_t.m4.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/uintmax_t.m4 | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/m4/uintmax_t.m4 b/m4/uintmax_t.m4 deleted file mode 100644 index cbae572..0000000 --- a/m4/uintmax_t.m4 +++ /dev/null @@ -1,32 +0,0 @@ -# uintmax_t.m4 serial 7 (gettext-0.11.6) -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 -dnl Public License, this file may be distributed as part of a program -dnl that contains a configuration script generated by Autoconf, under -dnl the same distribution terms as the rest of that program. - -dnl From Paul Eggert. - -AC_PREREQ(2.13) - -# Define uintmax_t to 'unsigned long' or 'unsigned long long' -# if it is not already defined in <stdint.h> or <inttypes.h>. - -AC_DEFUN([jm_AC_TYPE_UINTMAX_T], -[ - AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) - AC_REQUIRE([jm_AC_HEADER_STDINT_H]) - if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then - AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) - test $ac_cv_type_unsigned_long_long = yes \ - && ac_type='unsigned long long' \ - || ac_type='unsigned long' - AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, - [Define to unsigned long or unsigned long long - if <stdint.h> and <inttypes.h> don't define.]) - else - AC_DEFINE(HAVE_UINTMAX_T, 1, - [Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>.]) - fi -]) |