Re: [Qemu-devel] [PATCH] crypto: do an explicit check for nettle pbkdf functions

2016-04-04 Thread Daniel P. Berrange
On Thu, Mar 31, 2016 at 07:06:28AM -0600, Bruce Rogers wrote: > >>> On 3/29/2016 at 08:50 AM, "Daniel P. Berrange" > >>> wrote: > > Support for the PBKDF functions in nettle was not introduced > > until version 2.6. Some distros QEMU targets have older > > versions and thus lack PBKDF support. A

Re: [Qemu-devel] [PATCH] crypto: do an explicit check for nettle pbkdf functions

2016-03-31 Thread Bruce Rogers
>>> On 3/29/2016 at 08:50 AM, "Daniel P. Berrange" wrote: > Support for the PBKDF functions in nettle was not introduced > until version 2.6. Some distros QEMU targets have older > versions and thus lack PBKDF support. Address this by doing > a check in configure for the desired function and then

Re: [Qemu-devel] [PATCH] crypto: do an explicit check for nettle pbkdf functions

2016-03-29 Thread Wen Congyang
On 03/29/2016 10:50 PM, Daniel P. Berrange wrote: > Support for the PBKDF functions in nettle was not introduced > until version 2.6. Some distros QEMU targets have older > versions and thus lack PBKDF support. Address this by doing > a check in configure for the desired function and then skipping

[Qemu-devel] [PATCH] crypto: do an explicit check for nettle pbkdf functions

2016-03-29 Thread Daniel P. Berrange
Support for the PBKDF functions in nettle was not introduced until version 2.6. Some distros QEMU targets have older versions and thus lack PBKDF support. Address this by doing a check in configure for the desired function and then skipping compilation of the nettle-pbkdf.o module Reported-by: Wen