- Fix actions using the 'free' command - Fix buffer accounting when generating metric XML - Fix warning with gcc >= 13 - Fix implicit declarations - Change actions to retrieve vendor and product info - Add a 'unit' attribute to the metrics element - vif-stats.py: convert to Python3 - Misc coverity fixes - Relax virtio requirement in config file - Drop relax-virtio-config-requirement.patch - Add service file OBS-URL: https://build.opensuse.org/package/show/Virtualization/vhostmd?expand=0&rev=55
15 lines
403 B
Diff
15 lines
403 B
Diff
link libmetrics with libxml
|
|
|
|
libmetrics uses libxml, so link with it.
|
|
|
|
Index: vhostmd-1.2/libmetrics/Makefile.am
|
|
===================================================================
|
|
--- vhostmd-1.2.orig/libmetrics/Makefile.am
|
|
+++ vhostmd-1.2/libmetrics/Makefile.am
|
|
@@ -19,3 +19,5 @@ libmetrics_la_SOURCES = \
|
|
|
|
libmetrics_la_DEPENDENCIES = \
|
|
libmetrics.h
|
|
+
|
|
+libmetrics_la_LIBADD = $(LIBXML_LIBS)
|