util/kconfig: Silence warning about _GNU_SOURCE

For some reason, this symbol gets redefined, which causes a warning.
Hide the warning by checking whether it is already defined.

Change-Id: I70ffc9a799e0b536d6aba7d00f828bd6d915d94c
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39183
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Angel Pons 2020-03-01 15:41:55 +01:00 committed by Nico Huber
parent ac7d6b409e
commit b3bfb2a1a7
2 changed files with 4 additions and 0 deletions

View File

@ -5,7 +5,9 @@
* Derived from menuconfig.
*
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <string.h>
#include <stdlib.h>

View File

@ -24,7 +24,9 @@
#pragma alloca
#endif
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
/* We need this for `regex.h', and perhaps for the Emacs include files. */
#include <sys/types.h>