enable dispatcher on Windows - it was a simple oversight before

This commit is contained in:
Adam D. Ruppe 2021-12-09 11:08:57 -05:00
parent f8cd68131a
commit e9e1863a20
1 changed files with 9 additions and 0 deletions

9
cgi.d
View File

@ -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;