From 53ff8d3ca684f51c2a914800aebf4bbaa438b649 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 25 Aug 2011 21:25:01 -0400 Subject: [PATCH] oops missed a version --- cgi.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cgi.d b/cgi.d index caea6bf..a25d6d6 100644 --- a/cgi.d +++ b/cgi.d @@ -728,6 +728,7 @@ class Cgi { if(gzipResponse && acceptsGzip && isAll) { // FIXME: isAll really shouldn't be necessary // actually gzip the data here + version(with_gzip) { auto c = new Compress(true); // want gzip auto data = c.compress(t); @@ -736,6 +737,7 @@ class Cgi { std.file.write("/tmp/last-item", data); t = data; + } } if(requestMethod != RequestMethod.HEAD && t.length > 0) {