From e9e1863a204fc73e7ef4d81690da56c518cad768 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 9 Dec 2021 11:08:57 -0500 Subject: [PATCH] enable dispatcher on Windows - it was a simple oversight before --- cgi.d | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cgi.d b/cgi.d index cfae352..a7f6a0b 100644 --- a/cgi.d +++ b/cgi.d @@ -370,6 +370,15 @@ version(Posix) { } } +version(Windows) { + version(minimal) { + + } else { + // not too concerned about gdc here since the mingw version is fairly new as well + version=with_breaking_cgi_features; + } +} + void cloexec(int fd) { version(Posix) { import core.sys.posix.fcntl;