BUILD: fix dependencies between config and compat.h

compat.h only depends on the system, and config needs compat, not the
opposite. global.h was fixed to explicitly include standard.h for LONGBITS.
diff --git a/include/types/global.h b/include/types/global.h
index 14a6bf2..85203fa 100644
--- a/include/types/global.h
+++ b/include/types/global.h
@@ -25,6 +25,7 @@
 #include <netinet/in.h>
 
 #include <common/config.h>
+#include <common/standard.h>
 #include <types/freq_ctr.h>
 #include <types/listener.h>
 #include <types/proxy.h>