8a74d28
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
8a74d28
From: Robbie Harwood <rharwood@redhat.com>
8a74d28
Date: Tue, 22 Feb 2022 16:57:54 -0500
8a74d28
Subject: [PATCH] Where present, ensure config-util.h precedes config.h
8a74d28
8a74d28
gnulib defines go in config-util.h, and we need to know whether to
8a74d28
provide duplicates in config.h or not.
8a74d28
8a74d28
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
8a74d28
(cherry picked from commit 46e82b28e1a75703d0424c7e13d009171310c6cd)
8a74d28
[rharwood: gensymlist isn't part of tarballs]
8a74d28
---
8a74d28
 grub-core/disk/host.c                | 2 +-
8a74d28
 grub-core/kern/emu/argp_common.c     | 2 +-
8a74d28
 grub-core/kern/emu/main.c            | 2 +-
8a74d28
 grub-core/osdep/aros/config.c        | 2 +-
8a74d28
 grub-core/osdep/basic/emunet.c       | 2 +-
8a74d28
 grub-core/osdep/basic/init.c         | 2 +-
8a74d28
 grub-core/osdep/haiku/getroot.c      | 2 +-
8a74d28
 grub-core/osdep/linux/emunet.c       | 2 +-
8a74d28
 grub-core/osdep/unix/config.c        | 2 +-
8a74d28
 grub-core/osdep/unix/cputime.c       | 2 +-
8a74d28
 grub-core/osdep/unix/dl.c            | 2 +-
8a74d28
 grub-core/osdep/unix/emuconsole.c    | 2 +-
8a74d28
 grub-core/osdep/unix/getroot.c       | 2 +-
8a74d28
 grub-core/osdep/windows/config.c     | 2 +-
8a74d28
 grub-core/osdep/windows/cputime.c    | 2 +-
8a74d28
 grub-core/osdep/windows/dl.c         | 2 +-
8a74d28
 grub-core/osdep/windows/emuconsole.c | 2 +-
8a74d28
 grub-core/osdep/windows/init.c       | 2 +-
8a74d28
 18 files changed, 18 insertions(+), 18 deletions(-)
8a74d28
8a74d28
diff --git a/grub-core/disk/host.c b/grub-core/disk/host.c
e622855
index c151d225df..f34529f86a 100644
8a74d28
--- a/grub-core/disk/host.c
8a74d28
+++ b/grub-core/disk/host.c
8a74d28
@@ -20,8 +20,8 @@
8a74d28
 /* When using the disk, make a reference to this module.  Otherwise
8a74d28
    the user will end up with a useless module :-).  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/dl.h>
8a74d28
 #include <grub/disk.h>
8a74d28
diff --git a/grub-core/kern/emu/argp_common.c b/grub-core/kern/emu/argp_common.c
e622855
index 1668858703..8cb4608c3d 100644
8a74d28
--- a/grub-core/kern/emu/argp_common.c
8a74d28
+++ b/grub-core/kern/emu/argp_common.c
8a74d28
@@ -17,8 +17,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #pragma GCC diagnostic ignored "-Wmissing-prototypes"
8a74d28
 #pragma GCC diagnostic ignored "-Wmissing-declarations"
8a74d28
diff --git a/grub-core/kern/emu/main.c b/grub-core/kern/emu/main.c
ed1787d
index 55ea5a11cc..12277c34d2 100644
8a74d28
--- a/grub-core/kern/emu/main.c
8a74d28
+++ b/grub-core/kern/emu/main.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <time.h>
8a74d28
 #include <stdio.h>
8a74d28
diff --git a/grub-core/osdep/aros/config.c b/grub-core/osdep/aros/config.c
e622855
index c82d0ea8e7..55f5728efc 100644
8a74d28
--- a/grub-core/osdep/aros/config.c
8a74d28
+++ b/grub-core/osdep/aros/config.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/emu/hostdisk.h>
8a74d28
 #include <grub/emu/exec.h>
8a74d28
diff --git a/grub-core/osdep/basic/emunet.c b/grub-core/osdep/basic/emunet.c
e622855
index 6362e5cfbb..dbfd316d61 100644
8a74d28
--- a/grub-core/osdep/basic/emunet.c
8a74d28
+++ b/grub-core/osdep/basic/emunet.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/i18n.h>
8a74d28
 #include <grub/emu/net.h>
8a74d28
diff --git a/grub-core/osdep/basic/init.c b/grub-core/osdep/basic/init.c
e622855
index c54c710dbc..b104c7e162 100644
8a74d28
--- a/grub-core/osdep/basic/init.c
8a74d28
+++ b/grub-core/osdep/basic/init.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/util/misc.h>
8a74d28
 #include <grub/i18n.h>
8a74d28
diff --git a/grub-core/osdep/haiku/getroot.c b/grub-core/osdep/haiku/getroot.c
e622855
index 4e123c0903..927a1ebc94 100644
8a74d28
--- a/grub-core/osdep/haiku/getroot.c
8a74d28
+++ b/grub-core/osdep/haiku/getroot.c
8a74d28
@@ -1,5 +1,5 @@
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 #include <sys/types.h>
8a74d28
 #include <sys/stat.h>
8a74d28
 #include <string.h>
8a74d28
diff --git a/grub-core/osdep/linux/emunet.c b/grub-core/osdep/linux/emunet.c
e622855
index 19b188f09e..d5a6417355 100644
8a74d28
--- a/grub-core/osdep/linux/emunet.c
8a74d28
+++ b/grub-core/osdep/linux/emunet.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <sys/socket.h>
8a74d28
 #include <sys/types.h>
8a74d28
diff --git a/grub-core/osdep/unix/config.c b/grub-core/osdep/unix/config.c
e622855
index 46a881530c..0ce0e309ac 100644
8a74d28
--- a/grub-core/osdep/unix/config.c
8a74d28
+++ b/grub-core/osdep/unix/config.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/emu/hostdisk.h>
8a74d28
 #include <grub/emu/exec.h>
8a74d28
diff --git a/grub-core/osdep/unix/cputime.c b/grub-core/osdep/unix/cputime.c
e622855
index cff359a3b9..fb6ff55a1a 100644
8a74d28
--- a/grub-core/osdep/unix/cputime.c
8a74d28
+++ b/grub-core/osdep/unix/cputime.c
8a74d28
@@ -1,5 +1,5 @@
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <sys/times.h>
8a74d28
 #include <unistd.h>
8a74d28
diff --git a/grub-core/osdep/unix/dl.c b/grub-core/osdep/unix/dl.c
e622855
index 562b101a28..99b189bc1c 100644
8a74d28
--- a/grub-core/osdep/unix/dl.c
8a74d28
+++ b/grub-core/osdep/unix/dl.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/dl.h>
8a74d28
 #include <grub/misc.h>
8a74d28
diff --git a/grub-core/osdep/unix/emuconsole.c b/grub-core/osdep/unix/emuconsole.c
e622855
index 7308798efe..cac159424d 100644
8a74d28
--- a/grub-core/osdep/unix/emuconsole.c
8a74d28
+++ b/grub-core/osdep/unix/emuconsole.c
8a74d28
@@ -17,8 +17,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/term.h>
8a74d28
 #include <grub/types.h>
8a74d28
diff --git a/grub-core/osdep/unix/getroot.c b/grub-core/osdep/unix/getroot.c
e622855
index 46d7116c6e..4f436284ce 100644
8a74d28
--- a/grub-core/osdep/unix/getroot.c
8a74d28
+++ b/grub-core/osdep/unix/getroot.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config-util.h>
8a74d28
 #include <config.h>
8a74d28
+#include <config-util.h>
8a74d28
 
8a74d28
 #include <sys/stat.h>
8a74d28
 #include <sys/types.h>
8a74d28
diff --git a/grub-core/osdep/windows/config.c b/grub-core/osdep/windows/config.c
e622855
index 928ab1a49b..2bb8a2fd88 100644
8a74d28
--- a/grub-core/osdep/windows/config.c
8a74d28
+++ b/grub-core/osdep/windows/config.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/emu/hostfile.h>
8a74d28
 #include <grub/emu/config.h>
8a74d28
diff --git a/grub-core/osdep/windows/cputime.c b/grub-core/osdep/windows/cputime.c
e622855
index 3568aa2d35..5d06d79dd5 100644
8a74d28
--- a/grub-core/osdep/windows/cputime.c
8a74d28
+++ b/grub-core/osdep/windows/cputime.c
8a74d28
@@ -1,5 +1,5 @@
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/emu/misc.h>
8a74d28
 #include <windows.h>
8a74d28
diff --git a/grub-core/osdep/windows/dl.c b/grub-core/osdep/windows/dl.c
e622855
index eec6a24ad7..8eab7057e4 100644
8a74d28
--- a/grub-core/osdep/windows/dl.c
8a74d28
+++ b/grub-core/osdep/windows/dl.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/dl.h>
8a74d28
 #include <grub/misc.h>
8a74d28
diff --git a/grub-core/osdep/windows/emuconsole.c b/grub-core/osdep/windows/emuconsole.c
e622855
index 4fb3693cc0..17a44de469 100644
8a74d28
--- a/grub-core/osdep/windows/emuconsole.c
8a74d28
+++ b/grub-core/osdep/windows/emuconsole.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 
8a74d28
 #include <grub/term.h>
8a74d28
 #include <grub/misc.h>
8a74d28
diff --git a/grub-core/osdep/windows/init.c b/grub-core/osdep/windows/init.c
e622855
index 6297de6326..51a9647dde 100644
8a74d28
--- a/grub-core/osdep/windows/init.c
8a74d28
+++ b/grub-core/osdep/windows/init.c
8a74d28
@@ -16,8 +16,8 @@
8a74d28
  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
8a74d28
  */
8a74d28
 
8a74d28
-#include <config.h>
8a74d28
 #include <config-util.h>
8a74d28
+#include <config.h>
8a74d28
 #include <grub/util/misc.h>
8a74d28
 #include <grub/osdep/hostfile.h>
8a74d28
 #include <grub/util/windows.h>