mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-24 22:35:28 +00:00
43 lines
1.1 KiB
Diff
43 lines
1.1 KiB
Diff
|
From 54d09228116ac505407e380bd123fddf64f0fb79 Mon Sep 17 00:00:00 2001
|
||
|
From: Vladimir Serbinenko <phcoder@gmail.com>
|
||
|
Date: Mon, 3 Feb 2014 14:34:27 +0100
|
||
|
Subject: [PATCH 051/112] * util/grub-mkfont.c: Build fix for argp.h
|
||
|
with older gcc.
|
||
|
|
||
|
---
|
||
|
ChangeLog | 4 ++++
|
||
|
util/grub-mkfont.c | 4 ++++
|
||
|
2 files changed, 8 insertions(+)
|
||
|
|
||
|
diff --git a/ChangeLog b/ChangeLog
|
||
|
index 1151ced..2605dda 100644
|
||
|
--- a/ChangeLog
|
||
|
+++ b/ChangeLog
|
||
|
@@ -1,3 +1,7 @@
|
||
|
+2014-02-03 Vladimir Serbinenko <phcoder@gmail.com>
|
||
|
+
|
||
|
+ * util/grub-mkfont.c: Build fix for argp.h with older gcc.
|
||
|
+
|
||
|
2014-01-29 Vladimir Serbinenko <phcoder@gmail.com>
|
||
|
|
||
|
* grub-core/disk/ahci.c: Increase timeout. Some SSDs take up to
|
||
|
diff --git a/util/grub-mkfont.c b/util/grub-mkfont.c
|
||
|
index 3de07ee..e6485b4 100644
|
||
|
--- a/util/grub-mkfont.c
|
||
|
+++ b/util/grub-mkfont.c
|
||
|
@@ -33,7 +33,11 @@
|
||
|
|
||
|
#ifndef GRUB_BUILD
|
||
|
#define _GNU_SOURCE 1
|
||
|
+#pragma GCC diagnostic ignored "-Wmissing-prototypes"
|
||
|
+#pragma GCC diagnostic ignored "-Wmissing-declarations"
|
||
|
#include <argp.h>
|
||
|
+#pragma GCC diagnostic error "-Wmissing-prototypes"
|
||
|
+#pragma GCC diagnostic error "-Wmissing-declarations"
|
||
|
#endif
|
||
|
#include <assert.h>
|
||
|
|
||
|
--
|
||
|
1.8.5.3
|
||
|
|