The flux-accounting repo does not check for certain flux-core libraries that it will eventually need to use, such as the hostlist library.
This PR adds pkg.m4 to the config/ directory which will enable flux-accounting to check for flux-core libraries while it is building. It uncomments the PKG_CHECK_MODULES calls in ax_flux_core.m4 so that flux-accounting actually checks for these libraries, and finally adds output to configure.ac to show the location of flux-core's hostlist library.
Problem
The flux-accounting repo does not check for certain flux-core libraries that it will eventually need to use, such as the
hostlist
library.This PR adds
pkg.m4
to theconfig/
directory which will enable flux-accounting to check for flux-core libraries while it is building. It uncomments thePKG_CHECK_MODULES
calls inax_flux_core.m4
so that flux-accounting actually checks for these libraries, and finally adds output toconfigure.ac
to show the location of flux-core'shostlist
library.