2015-07-22 13:44:51 +00:00
|
|
|
From 5ef569df5b359048ee55c5000e2679855cb87e06 Mon Sep 17 00:00:00 2001
|
2014-03-13 18:02:22 +00:00
|
|
|
From: Andrey Borzenkov <arvidjaar@gmail.com>
|
|
|
|
Date: Sat, 18 Jan 2014 20:04:11 +0400
|
2015-07-22 13:44:51 +00:00
|
|
|
Subject: [PATCH 024/506] Use _W64 to detect MinGW W64-32 instead of
|
2014-03-13 18:02:22 +00:00
|
|
|
_FILE_OFFSET_BITS
|
|
|
|
|
|
|
|
In 94cee4a4c201bb506377b2c26e072eee8cb19d6f I overlooked that config.h
|
|
|
|
unconditionally sets _FILE_OFFSET_BITS, so it cannot be used to detect
|
|
|
|
MinGW W64 environment. It looks like Emacs folks already found
|
|
|
|
solution; instead of _FILE_OFFSET_BITS use _W64 as suggested in
|
|
|
|
http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00723.html
|
|
|
|
---
|
|
|
|
ChangeLog | 5 +++++
|
|
|
|
include/grub/osdep/hostfile_windows.h | 4 ++--
|
|
|
|
2 files changed, 7 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/ChangeLog b/ChangeLog
|
2014-06-24 15:18:06 +00:00
|
|
|
index fcbf220..5aac7c1 100644
|
2014-03-13 18:02:22 +00:00
|
|
|
--- a/ChangeLog
|
|
|
|
+++ b/ChangeLog
|
|
|
|
@@ -1,3 +1,8 @@
|
|
|
|
+2014-01-18 Andrey Borzenkov <arvidjaar@gmail.com>
|
|
|
|
+
|
|
|
|
+ * include/grub/osdep/hostfile_windows.h: Use _W64 instead of
|
|
|
|
+ FILE_OFFSET_BITS to differentiate between native MinGW and Mingw W64.
|
|
|
|
+
|
|
|
|
2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
|
|
|
|
|
|
|
|
* grub-core/term/terminfo.c: Recognize keys F1-F12.
|
|
|
|
diff --git a/include/grub/osdep/hostfile_windows.h b/include/grub/osdep/hostfile_windows.h
|
|
|
|
index 79efcfa..bf6451b 100644
|
|
|
|
--- a/include/grub/osdep/hostfile_windows.h
|
|
|
|
+++ b/include/grub/osdep/hostfile_windows.h
|
|
|
|
@@ -69,8 +69,8 @@ enum grub_util_fd_open_flags_t
|
|
|
|
|
|
|
|
#if defined (__MINGW32__) && !defined (__MINGW64__)
|
|
|
|
|
|
|
|
-/* 32 bit on MinGW-64 already redefines them if _FILE_OFFSET_BITS=64 */
|
|
|
|
-#if !defined(_FILE_OFFSET_BITS)
|
|
|
|
+/* 32 bit on Mingw-w64 already redefines them if _FILE_OFFSET_BITS=64 */
|
|
|
|
+#ifndef _W64
|
|
|
|
#define fseeko fseeko64
|
|
|
|
#define ftello ftello64
|
|
|
|
#endif
|
|
|
|
--
|
2015-07-22 13:44:51 +00:00
|
|
|
2.4.3
|
2014-03-13 18:02:22 +00:00
|
|
|
|