diff --git a/src/utils/cpuconf.cpp b/src/utils/cpuconf.cpp index e17674e5..e72700ed 100644 --- a/src/utils/cpuconf.cpp +++ b/src/utils/cpuconf.cpp @@ -44,6 +44,14 @@ bool getCpuConf(CpuConf& conf) } #elif defined(__FreeBSD__) + +#include +#include "execmd.h" +#include "smallut.h" + +using std::string; +using std::vector; + bool getCpuConf(CpuConf& conf) { vector cmdv = create_vector("sysctl")("hw.ncpu");