From 8ba22f661a3c7ce25194d18c07e0390cf14680c8 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Mon, 10 Jul 2023 18:29:03 -0500 Subject: [PATCH] Use -Wno-cast-function-type to quiet many warnings --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index ad284078dc..e3b3e5a244 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,8 @@ LIBJQ_SRC = src/builtin.c src/bytecode.c src/compile.c src/execute.c \ ### C build options AM_CFLAGS = -Wextra -Wall -Wno-missing-field-initializers \ - -Wno-unused-parameter -Wno-unused-function + -Wno-unused-parameter -Wno-unused-function \ + -Wno-cast-function-type if WIN32 AM_CFLAGS += -municode