Re: [PATCH] debuginfod: Make sure crypto and jsonc are also included in static link

2024-08-21 Thread Mark Wielaard
Hi, On Wed, Aug 21, 2024 at 03:32:59PM +0200, Mark Wielaard wrote: > When doing a --enable-gcov build we link all binaries static. > libdebuginfod.so now depends on crypto an jsonc. So also add those > when linking against libdebuginfod.a > > debuginfod/Makefile.am (libdebuginfod): Add $(cr

[PATCH] debuginfod: Make sure crypto and jsonc are also included in static link

2024-08-21 Thread Mark Wielaard
When doing a --enable-gcov build we link all binaries static. libdebuginfod.so now depends on crypto an jsonc. So also add those when linking against libdebuginfod.a debuginfod/Makefile.am (libdebuginfod): Add $(crypto_LIBS) $(jsonc_LIBS) when BUILD_STATIC. Signed-off-by: Mark Wielaar