Re: [PATCH] crypto/openssl: do not build useless workaround

2023-06-26 Thread Didier Pallard
On Mon, Jun 26, 2023 at 12:04 PM Thomas Monjalon wrote: > 26/06/2023 11:13, Didier Pallard: > > HI, > > not sure to understand how it is possible. > > If build OPENSSL_VERSION_NUMBER < 0x1010L, linker should link > binary > > with libcrypto.so.1.0.0. > > libcrypto.so.1.1 if build for 0x1010

Re: [PATCH] crypto/openssl: do not build useless workaround

2023-06-26 Thread Thomas Monjalon
26/06/2023 11:13, Didier Pallard: > HI, > not sure to understand how it is possible. > If build OPENSSL_VERSION_NUMBER < 0x1010L, linker should link binary > with libcrypto.so.1.0.0. > libcrypto.so.1.1 if build for 0x1010L and libcrypto.so.3 for > 0x3000L > loader should not allow to

Re: [PATCH] crypto/openssl: do not build useless workaround

2023-06-26 Thread Didier Pallard
HI, not sure to understand how it is possible. If build OPENSSL_VERSION_NUMBER < 0x1010L, linker should link binary with libcrypto.so.1.0.0. libcrypto.so.1.1 if build for 0x1010L and libcrypto.so.3 for 0x3000L loader should not allow to link with a library different from the one used

Re: [PATCH] crypto/openssl: do not build useless workaround

2023-06-25 Thread Thomas Monjalon
18/04/2023 16:56, Didier Pallard: > This workaround was needed before version 1.0.1f. Do not build it for > versions >= 1.1. > > Fixes: d61f70b4c918 ("crypto/libcrypto: add driver for OpenSSL library") > Signed-off-by: Didier Pallard > Cc: sta...@dpdk.org [...] > +#if OPENSSL_VERSION_NUMBER < 0x1

RE: [PATCH] crypto/openssl: do not build useless workaround

2023-06-20 Thread Akhil Goyal
Applied to dpdk-next-crypto Thanks.

Re: [PATCH] crypto/openssl: do not build useless workaround

2023-06-20 Thread Ji, Kai
ubject: [PATCH] crypto/openssl: do not build useless workaround This workaround was needed before version 1.0.1f. Do not build it for versions >= 1.1. Fixes: d61f70b4c918 ("crypto/libcrypto: add driver for OpenSSL library") Signed-off-by: Didier Pallard Cc: sta...@dpdk.org --- dri

[PATCH] crypto/openssl: do not build useless workaround

2023-04-18 Thread Didier Pallard
This workaround was needed before version 1.0.1f. Do not build it for versions >= 1.1. Fixes: d61f70b4c918 ("crypto/libcrypto: add driver for OpenSSL library") Signed-off-by: Didier Pallard Cc: sta...@dpdk.org --- drivers/crypto/openssl/rte_openssl_pmd.c | 14 -- 1 file changed, 12 i