Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCHv2] package/cryptopp: Backport gcc compatibility patch
@ 2016-04-25  8:09 Julian Scheel
  2016-04-28 11:51 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Julian Scheel @ 2016-04-25  8:09 UTC (permalink / raw)
  To: buildroot

Import patch from cryptopp upstream which fixes the gcc version checks for
using attribute deprecated with messages. Fixes build with host gcc versions <
4.5.

Signed-off-by: Julian Scheel <julian@jusst.de>
---
Changes in v2:
- Add upstream commit url to patch commit msg
- Add signed-off-by to patch commit msg
---
 ...ixed-GCC-version-for-deprecated-attribute.patch | 71 ++++++++++++++++++++++
 1 file changed, 71 insertions(+)
 create mode 100644 package/cryptopp/0001-Fixed-GCC-version-for-deprecated-attribute.patch

diff --git a/package/cryptopp/0001-Fixed-GCC-version-for-deprecated-attribute.patch b/package/cryptopp/0001-Fixed-GCC-version-for-deprecated-attribute.patch
new file mode 100644
index 0000000..fc9674e
--- /dev/null
+++ b/package/cryptopp/0001-Fixed-GCC-version-for-deprecated-attribute.patch
@@ -0,0 +1,71 @@
+From f707b9ef1688d4429ca6239cf2dc236440974681 Mon Sep 17 00:00:00 2001
+From: Jeffrey Walton <noloader@gmail.com>
+Date: Sun, 27 Dec 2015 23:44:36 -0500
+Subject: [PATCH] Fixed GCC version for deprecated attribute
+
+Taken from cryptopp upstream git:
+https://github.com/weidai11/cryptopp/commit/f707b9ef1688d4429ca6239cf2dc236440974681
+
+Signed-off-by: Julian Scheel <julian@jusst.de>
+
+---
+ default.h  | 8 ++++----
+ eccrypto.h | 2 +-
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/default.h b/default.h
+index 3dfbe7d..00ec664 100644
+--- a/default.h
++++ b/default.h
+@@ -48,7 +48,7 @@ private:
+ 	SecByteBlock m_passphrase;
+ 	CBC_Mode<DefaultBlockCipher>::Encryption m_cipher;
+ 
+-#if (CRYPTOPP_GCC_VERSION >= 40300) || (CRYPTOPP_CLANG_VERSION >= 20800)
++#if (CRYPTOPP_GCC_VERSION >= 40500) || (CRYPTOPP_CLANG_VERSION >= 20800)
+ } __attribute__((deprecated ("DefaultEncryptor will be changing in the near future because the algorithms are no longer secure")));
+ #elif (CRYPTOPP_GCC_VERSION)
+ } __attribute__((deprecated));
+@@ -101,7 +101,7 @@ private:
+ 	member_ptr<FilterWithBufferedInput> m_decryptor;
+ 	bool m_throwException;
+ 
+-#if (CRYPTOPP_GCC_VERSION >= 40300) || (CRYPTOPP_CLANG_VERSION >= 20800)
++#if (CRYPTOPP_GCC_VERSION >= 40500) || (CRYPTOPP_CLANG_VERSION >= 20800)
+ } __attribute__((deprecated ("DefaultDecryptor will be changing in the near future because the algorithms are no longer secure")));
+ #elif (CRYPTOPP_GCC_VERSION)
+ } __attribute__((deprecated));
+@@ -139,7 +139,7 @@ protected:
+ private:
+ 	member_ptr<DefaultMAC> m_mac;
+ 
+-#if (CRYPTOPP_GCC_VERSION >= 40300) || (CRYPTOPP_CLANG_VERSION >= 20800)
++#if (CRYPTOPP_GCC_VERSION >= 40500) || (CRYPTOPP_CLANG_VERSION >= 20800)
+ } __attribute__((deprecated ("DefaultEncryptorWithMAC will be changing in the near future because the algorithms are no longer secure")));
+ #elif (CRYPTOPP_GCC_VERSION)
+ } __attribute__((deprecated));
+@@ -188,7 +188,7 @@ private:
+ 	HashVerifier *m_hashVerifier;
+ 	bool m_throwException;
+ 
+-#if (CRYPTOPP_GCC_VERSION >= 40300) || (CRYPTOPP_CLANG_VERSION >= 20800)
++#if (CRYPTOPP_GCC_VERSION >= 40500) || (CRYPTOPP_CLANG_VERSION >= 20800)
+ } __attribute__((deprecated ("DefaultDecryptorWithMAC will be changing in the near future because the algorithms are no longer secure")));
+ #elif (CRYPTOPP_GCC_VERSION)
+ } __attribute__((deprecated));
+diff --git a/eccrypto.h b/eccrypto.h
+index 94a5d6c..7beaccc 100644
+--- a/eccrypto.h
++++ b/eccrypto.h
+@@ -635,7 +635,7 @@ struct ECIES
+ 	virtual ~ECIES() {}
+ #endif
+ 	
+-#if (CRYPTOPP_GCC_VERSION >= 40300) || (CRYPTOPP_CLANG_VERSION >= 20800)
++#if (CRYPTOPP_GCC_VERSION >= 40500) || (CRYPTOPP_CLANG_VERSION >= 20800)
+ } __attribute__((deprecated ("ECIES will be changing in the near future due to (1) an implementation bug and (2) an interop issue")));
+ #elif (CRYPTOPP_GCC_VERSION)
+ } __attribute__((deprecated));
+-- 
+2.8.0
+
-- 
2.8.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCHv2] package/cryptopp: Backport gcc compatibility patch
  2016-04-25  8:09 [Buildroot] [PATCHv2] package/cryptopp: Backport gcc compatibility patch Julian Scheel
@ 2016-04-28 11:51 ` Thomas Petazzoni
  2016-04-29  5:52   ` Julian Scheel
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2016-04-28 11:51 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 25 Apr 2016 10:09:29 +0200, Julian Scheel wrote:
> Import patch from cryptopp upstream which fixes the gcc version
> checks for using attribute deprecated with messages. Fixes build with
> host gcc versions < 4.5.
> 
> Signed-off-by: Julian Scheel <julian@jusst.de>

The patch on the cryptopp source didn't apply once applied from your
e-mail, since the DOS line endings had been turned into Unix line
endings. But the upstream source is really using DOS line endings.

So in the end, since the patch is easily available from Github, I've
simply used the <pkg>_PATCH variable to let Buildroot download and
apply the patch, rather than importing it in package/cryptopp/. And
then I've applied. See:

   https://git.buildroot.net/buildroot/commit/?id=b4ccab90608efca6a7c753a4980c546a61f715ad

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCHv2] package/cryptopp: Backport gcc compatibility patch
  2016-04-28 11:51 ` Thomas Petazzoni
@ 2016-04-29  5:52   ` Julian Scheel
  0 siblings, 0 replies; 3+ messages in thread
From: Julian Scheel @ 2016-04-29  5:52 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

On 28.04.2016 13:51, Thomas Petazzoni wrote:
> On Mon, 25 Apr 2016 10:09:29 +0200, Julian Scheel wrote:
>> Import patch from cryptopp upstream which fixes the gcc version
>> checks for using attribute deprecated with messages. Fixes build with
>> host gcc versions < 4.5.
>>
>> Signed-off-by: Julian Scheel <julian@jusst.de>
>
> The patch on the cryptopp source didn't apply once applied from your
> e-mail, since the DOS line endings had been turned into Unix line
> endings. But the upstream source is really using DOS line endings.

How nasty...

> So in the end, since the patch is easily available from Github, I've
> simply used the <pkg>_PATCH variable to let Buildroot download and
> apply the patch, rather than importing it in package/cryptopp/. And
> then I've applied. See:
>
>    https://git.buildroot.net/buildroot/commit/?id=b4ccab90608efca6a7c753a4980c546a61f715ad

That's neat, I wasn't aware of that <pkg>_PATH option.

Thanks for merging,
Julian

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-04-29  5:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-25  8:09 [Buildroot] [PATCHv2] package/cryptopp: Backport gcc compatibility patch Julian Scheel
2016-04-28 11:51 ` Thomas Petazzoni
2016-04-29  5:52   ` Julian Scheel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox