From: Stephen Dolan Date: Tue, 18 Sep 2012 08:43:44 +0000 (+0100) Subject: -Werror was a little overzealous. X-Git-Tag: jq-1.1~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b9bb64a888bbf45e1cfe0dae3159e9bb80e3009;p=jq -Werror was a little overzealous. Older versions of gcc warn about random things. -Werror makes the built fail on such compilers. --- diff --git a/c/Makefile b/c/Makefile index ddd49ae..7f58c61 100644 --- a/c/Makefile +++ b/c/Makefile @@ -1,4 +1,4 @@ -CC=gcc -Werror -Wextra -Wall -Wno-unused-parameter -std=gnu99 -ggdb -Wno-unused-function +CC=gcc -Wextra -Wall -Wno-missing-field-initializers -Wno-unused-parameter -std=gnu99 -ggdb -Wno-unused-function .PHONY: all clean all: parsertest