diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-01-28 20:28:31 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-01-28 20:28:31 +0000 |
commit | dc25e8475470f884b4a84bc61ccf8e6a6d816c7a (patch) | |
tree | 91adb13ca5c437619ca06046cf8b6b0ff3a8a35f /make.h | |
parent | 666ad445681516ae754ca623d98ee6936c04b3ff (diff) | |
download | gunmake-dc25e8475470f884b4a84bc61ccf8e6a6d816c7a.tar.gz |
Support a Windows build with Guile.
README.W32.template: Update with instructions for building with Guile.
build_w32.bat: Support building with Guile.
make.h [HAVE_STDINT_H]: Include stdint.h.
Diffstat (limited to 'make.h')
-rw-r--r-- | make.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -259,6 +259,9 @@ char *strerror (int errnum); #if HAVE_INTTYPES_H # include <inttypes.h> #endif +#if HAVE_STDINT_H +# include <stdint.h> +#endif #define FILE_TIMESTAMP uintmax_t #if !defined(HAVE_STRSIGNAL) |