Re: [PATCH] libdwfl: do not dlopen libdebuginfod.so in --disable-libdebuginfod mode

2020-08-31 Thread Mark Wielaard
Hi Dmitry, On Sun, Aug 30, 2020 at 11:49:10PM +0300, Dmitry V. Levin wrote: > On Sun, Aug 30, 2020 at 10:40:29PM +0200, Mark Wielaard wrote: > > To double check I removed all references to debuginfod_client from > > libdwflP.h when libdebuginfod is disabled. And things look fine in > > that case t

Re: [PATCH] libdwfl: do not dlopen libdebuginfod.so in --disable-libdebuginfod mode

2020-08-30 Thread Dmitry V. Levin
Hi Mark, On Sun, Aug 30, 2020 at 10:40:29PM +0200, Mark Wielaard wrote: > Hi Dmitry, > > On Thu, Aug 20, 2020 at 11:27:24PM +0300, Dmitry V. Levin wrote: > > debuginfod-client.c used to try to dlopen libdebuginfod.so even if > > libdebuginfod was completely disabled using --disable-libdebuginfod.

Re: [PATCH] libdwfl: do not dlopen libdebuginfod.so in --disable-libdebuginfod mode

2020-08-30 Thread Mark Wielaard
Hi Dmitry, On Thu, Aug 20, 2020 at 11:27:24PM +0300, Dmitry V. Levin wrote: > debuginfod-client.c used to try to dlopen libdebuginfod.so even if > libdebuginfod was completely disabled using --disable-libdebuginfod. > > Fix this by disabling build of debuginfod-client.c and disabling all > __libd

[PATCH] libdwfl: do not dlopen libdebuginfod.so in --disable-libdebuginfod mode

2020-08-20 Thread Dmitry V. Levin
debuginfod-client.c used to try to dlopen libdebuginfod.so even if libdebuginfod was completely disabled using --disable-libdebuginfod. Fix this by disabling build of debuginfod-client.c and disabling all __libdwfl_debuginfod_* invocations in --disable-libdebuginfod mode. Signed-off-by: Dmitry V.