aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nt/ChangeLog5
-rw-r--r--nt/config.nt10
2 files changed, 15 insertions, 0 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index ea4f7547962..660140f66cf 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,8 @@
12011-04-30 Eli Zaretskii <eliz@gnu.org>
2
3 * config.nt (HAVE_LONG_LONG_INT, HAVE_UNSIGNED_LONG_LONG_INT):
4 Define to 1 for MinGW of MSVC versions >= 1400.
5
12011-04-28 Eli Zaretskii <eliz@gnu.org> 62011-04-28 Eli Zaretskii <eliz@gnu.org>
2 7
3 * gmake.defs (ARCH): Fix error message in case of unknown 8 * gmake.defs (ARCH): Fix error message in case of unknown
diff --git a/nt/config.nt b/nt/config.nt
index a159234be7d..285f3944dd8 100644
--- a/nt/config.nt
+++ b/nt/config.nt
@@ -470,6 +470,16 @@ extern char *getenv ();
470#define BITS_PER_LONG 32 470#define BITS_PER_LONG 32
471#endif 471#endif
472 472
473#if defined(__MINGW32__) || _MSC_VER >= 1400
474
475/* Define to 1 if the system has the type `long long int'. */
476# define HAVE_LONG_LONG_INT 1
477
478/* Define to 1 if the system has the type `unsigned long long int'. */
479# define HAVE_UNSIGNED_LONG_LONG_INT 1
480
481#endif /* __MINGW32__ || _MSC_VER >= 1400 */
482
473#ifndef POINTER_TYPE 483#ifndef POINTER_TYPE
474#define POINTER_TYPE void 484#define POINTER_TYPE void
475#endif 485#endif