summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nss/nss/nss-disable-werror-on-deprecated-api.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/nss/nss/nss-disable-werror-on-deprecated-api.patch')
-rw-r--r--meta/recipes-support/nss/nss/nss-disable-werror-on-deprecated-api.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-support/nss/nss/nss-disable-werror-on-deprecated-api.patch b/meta/recipes-support/nss/nss/nss-disable-werror-on-deprecated-api.patch
new file mode 100644
index 0000000000..fbaa6a6b97
--- /dev/null
+++ b/meta/recipes-support/nss/nss/nss-disable-werror-on-deprecated-api.patch
@@ -0,0 +1,22 @@
1Disable Werror on deprecated API
2
3nss itself enables Werror if gcc is version 4.8 of greater, which fails
4the build against new glibc (2.24) because of use of readdir_r(), which is
5now deprecated. Let's just disable warnings on deprecated API usage.
6
7Upstream-Status: Inappropriate [Dev branch on newer version w/o this issue]
8
9Signed-off-by: Zeeshan Ali <zeeshan.ali@pelagicore.com>
10===================================================
11diff -u -r a/nss/coreconf/Werror.mk b/nss/coreconf/Werror.mk
12--- a/nss/coreconf/Werror.mk 2015-11-09 06:12:59.000000000 +0100
13+++ b/nss/coreconf/Werror.mk 2016-11-11 14:36:36.301062957 +0100
14@@ -60,7 +60,7 @@
15 endif #ndef NSS_ENABLE_WERROR
16
17 ifeq ($(NSS_ENABLE_WERROR),1)
18- WARNING_CFLAGS += -Werror
19+ WARNING_CFLAGS += -Werror -Wno-deprecated -Wno-deprecated-declarations
20 else
21 # Old versions of gcc (< 4.8) don't support #pragma diagnostic in functions.
22 # Use this to disable use of that #pragma and the warnings it suppresses.