From 4bb18b04b6750af9a62b68792415d527f0a54f5e Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Sun, 10 Feb 2019 19:31:53 -0500 Subject: [PATCH] jq: compile with _GNU_SOURCE (fixes #7785) Signed-off-by: W. Michael Petullo --- utils/jq/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/jq/Makefile b/utils/jq/Makefile index 053063e33..d5ffdd091 100644 --- a/utils/jq/Makefile +++ b/utils/jq/Makefile @@ -24,7 +24,7 @@ ifdef CONFIG_USE_MIPS16 TARGET_CFLAGS += -fno-ipa-sra endif -TARGET_CFLAGS += -std=c99 +TARGET_CFLAGS += -std=c99 -D_GNU_SOURCE CONFIGURE_ARGS+= \ --disable-docs \