* util/grub-mkfont.c: Build fix for argp.h with older gcc.
This commit is contained in:
parent
9abbaae7cd
commit
511ece7ceb
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue