BUILD: quic: global.h is needed in cfgparse-quic
cfgparse-quic accesses some members of the "global" struct but only
includes global-t.h. It actually used to work via tools.h due to a
long dependency chain that brought it, but it will be fixed and will
break cfgparse-quic, so let's fix it first.
diff --git a/src/cfgparse-quic.c b/src/cfgparse-quic.c
index ee23dc8..8be0545 100644
--- a/src/cfgparse-quic.c
+++ b/src/cfgparse-quic.c
@@ -3,7 +3,7 @@
#include <haproxy/api.h>
#include <haproxy/cfgparse.h>
#include <haproxy/errors.h>
-#include <haproxy/global-t.h>
+#include <haproxy/global.h>
#include <haproxy/listener.h>
#include <haproxy/proxy-t.h>
#include <haproxy/quic_cc-t.h>