From fab62285412aaafdfc4c81e9b581fb57f9d59c99 Mon Sep 17 00:00:00 2001 From: Bryce McKinlay Date: Mon, 19 Jul 2004 20:08:20 +0000 Subject: re PR java/16472 (jartool.c uses ftruncate, nonexistant on mingw32) 2004-07-11 Bryce McKinlay PR java/16472 * configure.ac: Check for ftruncate() and _chsize(). * jartool.c (main): Use _chsize if ftruncate not available. * configure, config.h.in: Rebuilt. From-SVN: r84929 --- fastjar/config.h.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'fastjar/config.h.in') diff --git a/fastjar/config.h.in b/fastjar/config.h.in index 173a135..84efea0 100644 --- a/fastjar/config.h.in +++ b/fastjar/config.h.in @@ -10,6 +10,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H +/* Define to 1 if you have the `ftruncate' function. */ +#undef HAVE_FTRUNCATE + /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H @@ -57,6 +60,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H +/* Define to 1 if you have the `_chsize' function. */ +#undef HAVE__CHSIZE + /* Define if the host machine stores words of multi-word integers in big-endian order. */ #undef HOST_WORDS_BIG_ENDIAN -- cgit v1.1