BUILD: stream-int: fix a few includes dependencies

The stream-int code doesn't need to load server.h as it doesn't use
servers at all. However removing this one reveals that proxy.h was
lacking types/checks.h that used to be silently inherited from
types/server.h loaded before in stream_interface.h.
diff --git a/include/proto/stream_interface.h b/include/proto/stream_interface.h
index d1e228b..490ee5e 100644
--- a/include/proto/stream_interface.h
+++ b/include/proto/stream_interface.h
@@ -25,7 +25,6 @@
 #include <stdlib.h>
 
 #include <common/config.h>
-#include <types/server.h>
 #include <types/stream.h>
 #include <types/stream_interface.h>
 #include <proto/applet.h>
diff --git a/include/types/proxy.h b/include/types/proxy.h
index b64d448..a3da428 100644
--- a/include/types/proxy.h
+++ b/include/types/proxy.h
@@ -40,6 +40,7 @@
 
 #include <types/acl.h>
 #include <types/backend.h>
+#include <types/checks.h>
 #include <types/counters.h>
 #include <types/filters.h>
 #include <types/freq_ctr.h>