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.
This commit is contained in:
James Le Cuirot
2022-09-25 15:14:09 +01:00
parent 8ae8df60fb
commit c350d8ca85
+1 -1
View File
@@ -1,6 +1,6 @@
include config.mk
CFLAGS +=-Wall -Werror -DNS_ENABLE_IPV6
CFLAGS += -Wall -DNS_ENABLE_IPV6
LIBS = $(MORELIBS) -lm
LIBS += -lcurl -lconfig