From 3739843e889eb3d2cf3f52e61a5fa07db1b2b046 Mon Sep 17 00:00:00 2001 From: oes Date: Sun, 7 Oct 2001 15:30:41 +0000 Subject: [PATCH] Removed FEATURE_DENY_GZIP --- acconfig.h | 10 +++------- cgisimple.c | 11 ++++------- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/acconfig.h b/acconfig.h index ce69d867..aabec4ca 100644 --- a/acconfig.h +++ b/acconfig.h @@ -37,6 +37,9 @@ * * Revisions : * $Log: acconfig.h,v $ + * Revision 1.12 2001/09/13 19:56:37 jongfoster + * Reverting to revision 1.10 - previous checking was majorly broken. + * * Revision 1.10 2001/07/30 22:08:36 jongfoster * Tidying up #defines: * - All feature #defines are now of the form FEATURE_xxx @@ -212,13 +215,6 @@ */ #undef FEATURE_COOKIE_JAR -/* - * If a stream is compressed via gzip, then it cannot be filtered through - * the PCRE regexps. (Commonly happens with Netscape browsers). - * This forces it to be uncompressed. - */ -#undef FEATURE_DENY_GZIP - /* * Locally redirect remote script-redirect URLs */ diff --git a/cgisimple.c b/cgisimple.c index 7fa0d613..005a83f1 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -1,4 +1,4 @@ -const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.3 2001/09/22 16:34:44 jongfoster Exp $"; +const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.4 2001/10/02 15:31:12 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgisimple.c,v $ @@ -36,6 +36,9 @@ const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.3 2001/09/22 16:34:44 jongfos * * Revisions : * $Log: cgisimple.c,v $ + * Revision 1.4 2001/10/02 15:31:12 oes + * Introduced show-request cgi + * * Revision 1.3 2001/09/22 16:34:44 jongfoster * Removing unneeded #includes * @@ -668,12 +671,6 @@ static void show_defines(struct map *exports) map_conditional(exports, "FEATURE_COOKIE_JAR", 0); #endif /* ndef FEATURE_COOKIE_JAR */ -#ifdef FEATURE_DENY_GZIP - map_conditional(exports, "FEATURE_DENY_GZIP", 1); -#else /* ifndef FEATURE_DENY_GZIP */ - map_conditional(exports, "FEATURE_DENY_GZIP", 0); -#endif /* ndef FEATURE_DENY_GZIP */ - #ifdef FEATURE_FAST_REDIRECTS map_conditional(exports, "FEATURE_FAST_REDIRECTS", 1); #else /* ifndef FEATURE_FAST_REDIRECTS */ -- 2.39.2