grub2/0312-grub-core-lib-posix_wrap-sys-types.h-Make-WORDS_BIGE.patch
Peter Jones f74b50e380 Rebase to upstream, fix a pile of bugs. The usual.
Signed-off-by: Peter Jones <pjones@redhat.com>
2013-06-12 15:37:08 -04:00

44 lines
1.3 KiB
Diff

From 740c6a92176346d85fa1e32ea9b7f1fc4bb914a8 Mon Sep 17 00:00:00 2001
From: Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Date: Sun, 14 Apr 2013 19:57:15 +0200
Subject: [PATCH 312/482] * grub-core/lib/posix_wrap/sys/types.h: Make
WORDS_BIGENDIAN definition match config-util.h to avoid warnings and
increase compatibility.
---
ChangeLog | 6 ++++++
grub-core/lib/posix_wrap/sys/types.h | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 8cbf241..a4d9555 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
+2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/lib/posix_wrap/sys/types.h: Make WORDS_BIGENDIAN definition
+ match config-util.h to avoid warnings and increase compatibility.
+
2013-04-14 Szymon Janc <szymon@janc.net.pl>
+2013-04-14 Vladimir Serbinenko <phcoder@gmail.com>
Add option to compress files on install/image creation.
diff --git a/grub-core/lib/posix_wrap/sys/types.h b/grub-core/lib/posix_wrap/sys/types.h
index c88a96e..6485a9a 100644
--- a/grub-core/lib/posix_wrap/sys/types.h
+++ b/grub-core/lib/posix_wrap/sys/types.h
@@ -60,7 +60,7 @@ typedef grub_addr_t uintptr_t;
#define SIZEOF_UINT64_T 8
#ifdef GRUB_CPU_WORDS_BIGENDIAN
-#define WORDS_BIGENDIAN
+#define WORDS_BIGENDIAN 1
#else
#undef WORDS_BIGENDIAN
#endif
--
1.8.2.1