From 8053d95989e80bc3cfa0434b62722a2ed113e332 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Fri, 29 Mar 2024 20:48:20 -0400 Subject: [PATCH] PR31368: more configury for !HAVE_DEBUGINFOD cases One more setupdwfl.cxx code needed the #if conditionals to compile on hosts without debuginfod.h . --- setupdwfl.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setupdwfl.cxx b/setupdwfl.cxx index 541608847..248e736fe 100644 --- a/setupdwfl.cxx +++ b/setupdwfl.cxx @@ -581,7 +581,9 @@ setup_dwfl_user(std::vector::const_iterator &begin, DWFL_ASSERT("dwfl_begin", dwfl); dwfl_report_begin (dwfl); +#ifdef HAVE_DEBUGINFOD setup_debuginfod_progress(dwfl); +#endif Dwfl_Module *mod = NULL; // XXX: should support buildid-based naming -- 2.43.5