emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104059: Define HAVE_LONG_LONG_INT, H


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104059: Define HAVE_LONG_LONG_INT, HAVE_UNSIGNED_LONG_LONG_INT for Windows.
Date: Sat, 30 Apr 2011 12:14:30 +0300
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104059
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sat 2011-04-30 12:14:30 +0300
message:
  Define HAVE_LONG_LONG_INT, HAVE_UNSIGNED_LONG_LONG_INT for Windows.
  
   nt/config.nt (HAVE_LONG_LONG_INT, HAVE_UNSIGNED_LONG_LONG_INT):
   Define to 1 for MinGW of MSVC versions >= 1400.
modified:
  nt/ChangeLog
  nt/config.nt
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2011-04-28 20:43:23 +0000
+++ b/nt/ChangeLog      2011-04-30 09:14:30 +0000
@@ -1,3 +1,8 @@
+2011-04-30  Eli Zaretskii  <address@hidden>
+
+       * config.nt (HAVE_LONG_LONG_INT, HAVE_UNSIGNED_LONG_LONG_INT):
+       Define to 1 for MinGW of MSVC versions >= 1400.
+
 2011-04-28  Eli Zaretskii  <address@hidden>
 
        * gmake.defs (ARCH): Fix error message in case of unknown

=== modified file 'nt/config.nt'
--- a/nt/config.nt      2011-04-27 21:14:34 +0000
+++ b/nt/config.nt      2011-04-30 09:14:30 +0000
@@ -470,6 +470,16 @@
 #define BITS_PER_LONG 32
 #endif
 
+#if defined(__MINGW32__) || _MSC_VER >= 1400
+
+/* Define to 1 if the system has the type `long long int'. */
+# define HAVE_LONG_LONG_INT 1
+
+/* Define to 1 if the system has the type `unsigned long long int'. */
+# define HAVE_UNSIGNED_LONG_LONG_INT 1
+
+#endif /* __MINGW32__ || _MSC_VER >= 1400 */
+
 #ifndef POINTER_TYPE
 #define POINTER_TYPE void
 #endif


reply via email to

[Prev in Thread] Current Thread [Next in Thread]