REORG: include: move port_range.h to haproxy/port_range{,-t}.h

The port ranges didn't depend on anything. However they were missing
some includes such as stdlib and api-t.h which were added.
diff --git a/src/checks.c b/src/checks.c
index cd1649b..499bc51 100644
--- a/src/checks.c
+++ b/src/checks.c
@@ -57,7 +57,7 @@
 #include <proto/log.h>
 #include <proto/mux_pt.h>
 #include <proto/queue.h>
-#include <proto/port_range.h>
+#include <haproxy/port_range.h>
 #include <proto/proto_tcp.h>
 #include <haproxy/protocol.h>
 #include <proto/proxy.h>
diff --git a/src/fd.c b/src/fd.c
index c7bc54e..56a0b7b 100644
--- a/src/fd.c
+++ b/src/fd.c
@@ -93,7 +93,7 @@
 
 #include <proto/fd.h>
 #include <proto/log.h>
-#include <proto/port_range.h>
+#include <haproxy/port_range.h>
 
 struct fdtab *fdtab = NULL;     /* array of all the file descriptors */
 struct polled_mask *polled_mask = NULL; /* Array for the polled_mask of each fd */
diff --git a/src/proto_tcp.c b/src/proto_tcp.c
index b9aa824..2abfd85 100644
--- a/src/proto_tcp.c
+++ b/src/proto_tcp.c
@@ -48,7 +48,7 @@
 #include <proto/http_rules.h>
 #include <proto/listener.h>
 #include <proto/log.h>
-#include <proto/port_range.h>
+#include <haproxy/port_range.h>
 #include <haproxy/protocol.h>
 #include <proto/http_ana.h>
 #include <proto/proto_tcp.h>
diff --git a/src/server.c b/src/server.c
index 324dc97..5c26de3 100644
--- a/src/server.c
+++ b/src/server.c
@@ -34,7 +34,7 @@
 #include <proto/cli.h>
 #include <proto/checks.h>
 #include <proto/connection.h>
-#include <proto/port_range.h>
+#include <haproxy/port_range.h>
 #include <haproxy/protocol.h>
 #include <proto/queue.h>
 #include <proto/sample.h>