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

The files were moved almost as-is, just dropping arg-t and auth-t from
acl-t but keeping arg-t in acl.h. It was useful to revisit the call places
since a handful of files used to continue to include acl.h while they did
not need it at all. Struct stream was only made a forward declaration
since not otherwise needed.
diff --git a/src/listener.c b/src/listener.c
index 6a13b1c..ab0a4a7 100644
--- a/src/listener.c
+++ b/src/listener.c
@@ -18,6 +18,7 @@
 #include <unistd.h>
 #include <fcntl.h>
 
+#include <haproxy/acl.h>
 #include <haproxy/api.h>
 #include <common/cfgparse.h>
 #include <haproxy/connection.h>
@@ -31,7 +32,6 @@
 
 #include <haproxy/protocol-t.h>
 
-#include <proto/acl.h>
 #include <haproxy/fd.h>
 #include <haproxy/freq_ctr.h>
 #include <proto/log.h>