syslog-ng: Bump version to 3.7.3
[buildroot-gz.git] / package / crda / 0003-drop-werror.patch
blob072e3fc46e1e4dadbd763f700eaa3537dd54fbe4
1 From f38253e066dee96b148be1b79a6b4a696ee0ae0b Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
3 Date: Sun, 1 May 2016 10:05:48 +0200
4 Subject: [PATCH] drop werror
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Building crda with GCC 6 fails because of all compiler warnings are treated as
10 errors. Disable the compiler option '-Werror':
12 keys-gcrypt.c:94:32: error: ‘keys’ defined but not used [-Werror=unused-const-variable=]
13 static const struct key_params keys[] = {
14 ^~~~
15 cc1: all warnings being treated as errors
17 Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
18 ---
19 Makefile | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
22 diff --git a/Makefile b/Makefile
23 index 74f1172..e9b417f 100644
24 --- a/Makefile
25 +++ b/Makefile
26 @@ -26,7 +26,7 @@ PUBKEY_DIR?=pubkeys
27 RUNTIME_PUBKEY_DIR?=/etc/wireless-regdb/pubkeys
29 CFLAGS += -O2 -fpic
30 -CFLAGS += -std=gnu99 -Wall -Werror -pedantic
31 +CFLAGS += -std=gnu99 -Wall -pedantic
32 CFLAGS += -Wall -g
33 LDLIBREG += -lreg
34 LDLIBS += $(LDLIBREG)
35 --
36 2.8.2