Re: [PATCH] build: fix dependencies lookup

2023-02-06 Thread Thomas Monjalon
16/01/2023 10:23, David Marchand: > On Sun, Jan 15, 2023 at 5:53 PM Thomas Monjalon wrote: > > > > The first parameter of the Meson function "find_library()" > > should be the library name without the "lib" prefix. > > > > Otherwise Meson prints this warning: > > WARNING: find_library('lib

Re: [PATCH] build: fix dependencies lookup

2023-01-16 Thread Thomas Monjalon
16/01/2023 10:23, David Marchand: > On Sun, Jan 15, 2023 at 5:53 PM Thomas Monjalon wrote: > > > > The first parameter of the Meson function "find_library()" > > should be the library name without the "lib" prefix. > > > > Otherwise Meson prints this warning: > > WARNING: find_library('lib

Re: [PATCH] build: fix dependencies lookup

2023-01-16 Thread David Marchand
On Sun, Jan 15, 2023 at 5:53 PM Thomas Monjalon wrote: > > The first parameter of the Meson function "find_library()" > should be the library name without the "lib" prefix. > > Otherwise Meson prints this warning: > WARNING: find_library('libexecinfo') starting in "lib" > only work

Re: [PATCH] build: fix dependencies lookup

2023-01-16 Thread Bruce Richardson
On Sun, Jan 15, 2023 at 05:53:15PM +0100, Thomas Monjalon wrote: > The first parameter of the Meson function "find_library()" > should be the library name without the "lib" prefix. > > Otherwise Meson prints this warning: > WARNING: find_library('libexecinfo') starting in "lib" > only

[PATCH] build: fix dependencies lookup

2023-01-15 Thread Thomas Monjalon
The first parameter of the Meson function "find_library()" should be the library name without the "lib" prefix. Otherwise Meson prints this warning: WARNING: find_library('libexecinfo') starting in "lib" only works by accident and is not portable Fixes: 1cd512b2f532 ("build: detec