getMB-isa.c, getMB-smb.c, and getMB-via.c all #include machine/cpufunc.h without first including sys/types.h. This causes it to not build, as 'u_int' is used in cpufunc.h and not declared in anything it includes. Fix: add "#include <sys/types.h>" before "#include <machine/cpufunc.h>" in the files listed above. How-To-Repeat: cd /usr/ports/sysutils/xmbmon && make
State Changed From-To: open->closed Committed thanks