From 5d3c633229d54d0e3825fe0a9775858a93a664a7 Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Mon, 3 Feb 2014 14:35:51 +0100 Subject: [PATCH 057/261] * util/grub-mkrescue.c: Build fix for argp.h with older gcc. --- ChangeLog | 4 ++++ util/grub-mkrescue.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index f2bba8402..f4a472144 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-02-03 Vladimir Serbinenko + * util/grub-mkrescue.c: Build fix for argp.h with older gcc. + +2014-02-03 Vladimir Serbinenko + * util/grub-mkfont.c: Build fix for argp.h with older gcc. 2014-01-29 Vladimir Serbinenko diff --git a/util/grub-mkrescue.c b/util/grub-mkrescue.c index 34e0b7aff..e71983982 100644 --- a/util/grub-mkrescue.c +++ b/util/grub-mkrescue.c @@ -25,7 +25,11 @@ #include #include #include +#pragma GCC diagnostic ignored "-Wmissing-prototypes" +#pragma GCC diagnostic ignored "-Wmissing-declarations" #include +#pragma GCC diagnostic error "-Wmissing-prototypes" +#pragma GCC diagnostic error "-Wmissing-declarations" #include #include -- 2.13.5