diff options
author | Bruno Haible <bruno@clisp.org> | 2001-11-06 18:42:28 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-21 22:53:58 +0200 |
commit | 19e84d3e7efebf13a7fdf99a2b8cfa9a9380d715 (patch) | |
tree | 2d877ede2ba7d29979607b4149d1f8456dd76116 /m4/mkdtemp.m4 | |
parent | c5d200661976aebb16c058dda95a4bd2bb2c2a52 (diff) | |
download | external_gettext-19e84d3e7efebf13a7fdf99a2b8cfa9a9380d715.zip external_gettext-19e84d3e7efebf13a7fdf99a2b8cfa9a9380d715.tar.gz external_gettext-19e84d3e7efebf13a7fdf99a2b8cfa9a9380d715.tar.bz2 |
Portability to systems which define uintmax_t in stdint.h, not inttypes.h.
Diffstat (limited to 'm4/mkdtemp.m4')
-rw-r--r-- | m4/mkdtemp.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/m4/mkdtemp.m4 b/m4/mkdtemp.m4 index 8ee7ff9..4b57115 100644 --- a/m4/mkdtemp.m4 +++ b/m4/mkdtemp.m4 @@ -6,6 +6,8 @@ AC_DEFUN([gt_FUNC_MKDTEMP], [ AC_REPLACE_FUNCS(mkdtemp) AC_STAT_MACROS_BROKEN - AC_CHECK_HEADERS(fcntl.h inttypes.h stdint.h sys/time.h time.h unistd.h) + jm_AC_HEADER_INTTYPES_H + jm_AC_HEADER_STDINT_H + AC_CHECK_HEADERS(fcntl.h sys/time.h time.h unistd.h) AC_CHECK_FUNCS(gettimeofday) ]) |