[PATCH] load-foreign-library: perform substring match on library files

2022-07-23 Thread soeren
From: Sören Tempel This patch is a fix for bug #49232 [1]. To summarize this bug, the current load-foreign-library implementation does not load versioned sonames (e.g. libfoo.so.5) which are common on Linux. This is an issue for us at Alpine Linux since we ship unversioned sonames (e.g. libfoo.so

Re: [PATCH] load-foreign-library: perform substring match on library files

2022-07-23 Thread Maxime Devos
On 23-07-2022 13:09, soe...@soeren-tempel.net wrote: From: Sören Tempel This patch is a fix for bug #49232 [1]. To summarize this bug, the current load-foreign-library implementation does not load versioned sonames (e.g. libfoo.so.5) which are common on Linux. This is an issue for us at Alpine