From: Giulio Benetti Date: Fri, 24 Jan 2020 19:57:03 +0000 (+0100) Subject: package/libnss: rename patch number X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=efa528e1c9bc98b8bdeda15b402b3decd6aaec27;p=buildroot.git package/libnss: rename patch number At the moment there are 2 patches with the same id(0001-xxx.patch) so let's rename one of them to 0002-xxx.patch. Signed-off-by: Giulio Benetti Signed-off-by: Thomas Petazzoni --- diff --git a/package/libnss/0001-Bug-1602743-Fix-PowerPc-build-sys-auxv.h-failure.patch b/package/libnss/0001-Bug-1602743-Fix-PowerPc-build-sys-auxv.h-failure.patch deleted file mode 100644 index c8f12d777a..0000000000 --- a/package/libnss/0001-Bug-1602743-Fix-PowerPc-build-sys-auxv.h-failure.patch +++ /dev/null @@ -1,40 +0,0 @@ -From efe0fd875c80ff6e3a05db6c5e15b07c173530a6 Mon Sep 17 00:00:00 2001 -From: Giulio Benetti -Date: Tue, 10 Dec 2019 13:06:01 +0100 -Subject: [PATCH] Bug 1602743 - Fix PowerPc build sys/auxv.h failure - -Signed-off-by: Giulio Benetti ---- - nss/lib/freebl/blinit.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/nss/lib/freebl/blinit.c b/nss/lib/freebl/blinit.c -index 959109b60..f0654595d 100644 ---- a/nss/lib/freebl/blinit.c -+++ b/nss/lib/freebl/blinit.c -@@ -357,7 +357,9 @@ ppc_crypto_support() - - #if defined(__powerpc__) - -+#if (__has_include()) - #include -+#endif - - // Defines from cputable.h in Linux kernel - PPC, letting us build on older kernels - #ifndef PPC_FEATURE2_VEC_CRYPTO -@@ -368,8 +370,11 @@ static void - CheckPPCSupport() - { - char *disable_hw_crypto = PR_GetEnvSecure("NSS_DISABLE_PPC_GHASH"); -+ long hwcaps = 0; - -- long hwcaps = getauxval(AT_HWCAP2); -+#if (__has_include()) -+ hwcaps = getauxval(AT_HWCAP2); -+#endif - - ppc_crypto_support_ = hwcaps & PPC_FEATURE2_VEC_CRYPTO && disable_hw_crypto == NULL; - } --- -2.20.1 - diff --git a/package/libnss/0002-Bug-1602743-Fix-PowerPc-build-sys-auxv.h-failure.patch b/package/libnss/0002-Bug-1602743-Fix-PowerPc-build-sys-auxv.h-failure.patch new file mode 100644 index 0000000000..c8f12d777a --- /dev/null +++ b/package/libnss/0002-Bug-1602743-Fix-PowerPc-build-sys-auxv.h-failure.patch @@ -0,0 +1,40 @@ +From efe0fd875c80ff6e3a05db6c5e15b07c173530a6 Mon Sep 17 00:00:00 2001 +From: Giulio Benetti +Date: Tue, 10 Dec 2019 13:06:01 +0100 +Subject: [PATCH] Bug 1602743 - Fix PowerPc build sys/auxv.h failure + +Signed-off-by: Giulio Benetti +--- + nss/lib/freebl/blinit.c | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/nss/lib/freebl/blinit.c b/nss/lib/freebl/blinit.c +index 959109b60..f0654595d 100644 +--- a/nss/lib/freebl/blinit.c ++++ b/nss/lib/freebl/blinit.c +@@ -357,7 +357,9 @@ ppc_crypto_support() + + #if defined(__powerpc__) + ++#if (__has_include()) + #include ++#endif + + // Defines from cputable.h in Linux kernel - PPC, letting us build on older kernels + #ifndef PPC_FEATURE2_VEC_CRYPTO +@@ -368,8 +370,11 @@ static void + CheckPPCSupport() + { + char *disable_hw_crypto = PR_GetEnvSecure("NSS_DISABLE_PPC_GHASH"); ++ long hwcaps = 0; + +- long hwcaps = getauxval(AT_HWCAP2); ++#if (__has_include()) ++ hwcaps = getauxval(AT_HWCAP2); ++#endif + + ppc_crypto_support_ = hwcaps & PPC_FEATURE2_VEC_CRYPTO && disable_hw_crypto == NULL; + } +-- +2.20.1 +