f935cbcf8d
systemd service reload now checks config file (rhbz#1565377) drop nginx requirement on nginx-all-modules (rhbz#1708799) let nginx handle log creation on logrotate (rhbz#1683388) have log directory owned by root (rhbz#1390183, CVE-2016-1247) remove obsolete --with-ipv6 (src PR#8) correction: pcre2 is actually not supported by nginx, reintroduce pcre
32 lines
802 B
Diff
32 lines
802 B
Diff
From 00cab63102084b89de0a3494a1d023c4b1d4982b Mon Sep 17 00:00:00 2001
|
|
From: Felix Kaechele <felix@kaechele.ca>
|
|
Date: Sun, 7 Jun 2020 12:14:02 -0400
|
|
Subject: [PATCH 1/2] remove Werror in upstream build scripts
|
|
|
|
removes -Werror in upstream build scripts. -Werror conflicts with
|
|
-D_FORTIFY_SOURCE=2 causing warnings to turn into errors.
|
|
|
|
Signed-off-by: Felix Kaechele <felix@kaechele.ca>
|
|
---
|
|
auto/cc/gcc | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/auto/cc/gcc b/auto/cc/gcc
|
|
index a5c5c18..cdbbadb 100644
|
|
--- a/auto/cc/gcc
|
|
+++ b/auto/cc/gcc
|
|
@@ -166,7 +166,9 @@ esac
|
|
|
|
|
|
# stop on warning
|
|
-CFLAGS="$CFLAGS -Werror"
|
|
+# This combined with Fedora's FORTIFY_SOURCE=2 option causes it nginx
|
|
+# to not compile.
|
|
+#CFLAGS="$CFLAGS -Werror"
|
|
|
|
# debug
|
|
CFLAGS="$CFLAGS -g"
|
|
--
|
|
2.31.1
|
|
|