From c350d8ca852a9bebc15c2097bbde2f0a115db664 Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Sun, 25 Sep 2022 14:59:26 +0100 Subject: [PATCH] Don't build with -Werror by default As the Linux kernel experiment with this flag has shown, it's just a bad idea unless you regularly do development work on the project. Different compilers and compiler versions will emit different warnings, which will cause headaches for users. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ae5f67a..8bbe251 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ include config.mk -CFLAGS +=-Wall -Werror -DNS_ENABLE_IPV6 +CFLAGS += -Wall -DNS_ENABLE_IPV6 LIBS = $(MORELIBS) -lm LIBS += -lcurl -lconfig