From: oes <oes@users.sourceforge.net>
Date: Sun, 7 Oct 2001 15:33:14 +0000 (+0000)
Subject: Removed FEATURE_DENY_GZIP
X-Git-Tag: v_2_9_9~21
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/@default-cgi@/faq/static/developer-manual/@default-cgi@send-stylesheet?a=commitdiff_plain;h=e5a56f639fb0aa0b008761349df73854fd0b8437;p=privoxy.git

Removed FEATURE_DENY_GZIP
Bumped up version number
---

diff --git a/config.h.win b/config.h.win
index 3fb1947e..7de53be1 100755
--- a/config.h.win
+++ b/config.h.win
@@ -37,6 +37,9 @@
  *
  * Revisions   :
  *    $Log: config.h.win,v $
+ *    Revision 1.11  2001/09/16 16:59:34  jongfoster
+ *    Bugfix - couldn't build resources with previous version.
+ *
  *    Revision 1.10  2001/09/16 16:19:02  jongfoster
  *    New version based on latest configure.in and acconfig.h
  *
@@ -168,12 +171,12 @@
 /*
  * Version number - Point (_._.X)
  */
-#define VERSION_POINT 8
+#define VERSION_POINT 9
 
 /*
  * Version number, as a string
  */
-#define VERSION "2.9.8"
+#define VERSION "2.9.9"
 
 /*
  * Status of the code: alpha, beta or stable
@@ -214,13 +217,6 @@
  */
 #define FEATURE_COOKIE_JAR 1
 
-/*
- * 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.
- */
-#define FEATURE_DENY_GZIP 1
-
 /*
  * Locally redirect remote script-redirect URLs
  */
diff --git a/config.h.win32threads.win b/config.h.win32threads.win
index ff570d64..28881ea9 100644
--- a/config.h.win32threads.win
+++ b/config.h.win32threads.win
@@ -37,6 +37,9 @@
  *
  * Revisions   :
  *    $Log: config.h.win32threads.win,v $
+ *    Revision 1.6  2001/09/16 16:59:34  jongfoster
+ *    Bugfix - couldn't build resources with previous version.
+ *
  *    Revision 1.5  2001/09/16 16:19:02  jongfoster
  *    New version based on latest configure.in and acconfig.h
  *
@@ -168,12 +171,12 @@
 /*
  * Version number - Point (_._.X)
  */
-#define VERSION_POINT 8
+#define VERSION_POINT 9
 
 /*
  * Version number, as a string
  */
-#define VERSION "2.9.8"
+#define VERSION "2.9.9"
 
 /*
  * Status of the code: alpha, beta or stable
@@ -214,13 +217,6 @@
  */
 #define FEATURE_COOKIE_JAR 1
 
-/*
- * 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.
- */
-#define FEATURE_DENY_GZIP 1
-
 /*
  * Locally redirect remote script-redirect URLs
  */
diff --git a/configure.in b/configure.in
index 001d65fb..1cbf5194 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl 
-dnl $Id: configure.in,v 1.17 2001/09/12 23:44:55 david__schmidt Exp $
+dnl $Id: configure.in,v 1.18 2001/09/13 13:10:24 steudten Exp $
 dnl 
 dnl Written by and Copyright (C) 2001 the SourceForge
 dnl IJBSWA team.  http://ijbswa.sourceforge.net
@@ -28,6 +28,11 @@ dnl or write to the Free Software Foundation, Inc., 59
 dnl Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 dnl 
 dnl $Log: configure.in,v $
+dnl Revision 1.18  2001/09/13 13:10:24  steudten
+dnl
+dnl PreWork for Debug Interface.
+dnl Add new option "--with-debug" to enable debugging (flags aso.)
+dnl
 dnl Revision 1.17  2001/09/12 23:44:55  david__schmidt
 dnl Mac OSX (Darwin) support added.
 dnl
@@ -181,7 +186,7 @@ dnl =================================================================
 dnl AutoConf Initialization
 dnl =================================================================
 
-AC_REVISION($Revision: 1.17 $)
+AC_REVISION($Revision: 1.18 $)
 AC_INIT(jcc.c)
 AC_CONFIG_HEADER(config.h)
 AC_CANONICAL_HOST
@@ -193,7 +198,7 @@ dnl =================================================================
 
 VERSION_MAJOR=2
 VERSION_MINOR=9
-VERSION_POINT=8
+VERSION_POINT=9
 CODE_STATUS="\"alpha\""
 
 dnl CODE_STATUS can be "alpha", "beta", or "stable", and will be
@@ -473,14 +478,6 @@ AC_ARG_ENABLE(toggle,
   AC_DEFINE(FEATURE_TOGGLE)
 fi],AC_DEFINE(FEATURE_TOGGLE))
 
-AC_ARG_ENABLE(gzip,
-[  --disable-gzip          Block gzip'ed transfer of documents.  Note that
-                          this is required if you want content modification
-                          even with gzip-supporting servers.],
-[if test $enableval = "no"; then
-  AC_DEFINE(FEATURE_DENY_GZIP)
-fi])
-
 AC_ARG_ENABLE(force,
 [  --disable-force         Don't allow blockfile to be bypassed],
 [if test $enableval = yes; then