Blame SOURCES/0012-fix-32-bit-compilation-on-MinGW-w64.patch

f731ee
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f731ee
From: Andrey Borzenkov <arvidjaar@gmail.com>
f731ee
Date: Tue, 7 Jan 2014 18:43:02 +0400
f731ee
Subject: [PATCH] fix 32 bit compilation on MinGW-w64
f731ee
f731ee
Use _FILE_OFFSET_BITS macro to distinguish between native MinGW and
f731ee
32 bit under MinGW-64. The latter does not require fseeko/ftello
f731ee
redefinition which it already does in case of _FILE_OFFSET_BITS=64.
f731ee
---
f731ee
 include/grub/osdep/hostfile_windows.h | 3 +++
f731ee
 ChangeLog                             | 5 +++++
f731ee
 2 files changed, 8 insertions(+)
f731ee
f731ee
diff --git a/include/grub/osdep/hostfile_windows.h b/include/grub/osdep/hostfile_windows.h
f731ee
index 36615b2c451..79efcfa5084 100644
f731ee
--- a/include/grub/osdep/hostfile_windows.h
f731ee
+++ b/include/grub/osdep/hostfile_windows.h
f731ee
@@ -69,8 +69,11 @@ enum grub_util_fd_open_flags_t
f731ee
 
f731ee
 #if defined (__MINGW32__) && !defined (__MINGW64__)
f731ee
 
f731ee
+/* 32 bit on MinGW-64 already redefines them if _FILE_OFFSET_BITS=64 */
f731ee
+#if !defined(_FILE_OFFSET_BITS)
f731ee
 #define fseeko fseeko64
f731ee
 #define ftello ftello64
f731ee
+#endif
f731ee
 
f731ee
 #endif
f731ee
 
f731ee
diff --git a/ChangeLog b/ChangeLog
f731ee
index 8c1ececa1ed..e87f0a7a4a4 100644
f731ee
--- a/ChangeLog
f731ee
+++ b/ChangeLog
f731ee
@@ -1,3 +1,8 @@
f731ee
+2014-01-07  Andrey Borzenkov <arvidjaar@gmail.com>
f731ee
+
f731ee
+	* include/grub/osdep/hostfile_windows.h: Do not redefine fseeko/ftello
f731ee
+	on MinGW-64 when compiling for 32 bits.
f731ee
+
f731ee
 2013-12-30  Andrey Borzenkov <arvidjaar@gmail.com>
f731ee
 
f731ee
 	* grub-core/Makefile.core.def: strip .eh_frame section for arm64-efi.