Various adaptions
[privoxy.git] / config.h.in
1 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
2 #ifndef _CONFIG_H
3 #define _CONFIG_H
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/config.h.in,v $
7  *
8  * Purpose     :  This file should be the first thing included in every
9  *                .c file.  (Before even system headers).  It contains 
10  *                #define statements for various features.  It was
11  *                introduced because the compile command line started
12  *                getting ludicrously long with feature defines.
13  *
14  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
15  *                IJBSWA team.  http://ijbswa.sourceforge.net
16  *
17  *                Based on the Internet Junkbuster originally written
18  *                by and Copyright (C) 1997 Anonymous Coders and 
19  *                Junkbusters Corporation.  http://www.junkbusters.com
20  *
21  *                This program is free software; you can redistribute it 
22  *                and/or modify it under the terms of the GNU General
23  *                Public License as published by the Free Software
24  *                Foundation; either version 2 of the License, or (at
25  *                your option) any later version.
26  *
27  *                This program is distributed in the hope that it will
28  *                be useful, but WITHOUT ANY WARRANTY; without even the
29  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
30  *                PARTICULAR PURPOSE.  See the GNU General Public
31  *                License for more details.
32  *
33  *                The GNU General Public License should be included with
34  *                this file.  If not, you can view it at
35  *                http://www.gnu.org/copyleft/gpl.html
36  *                or write to the Free Software Foundation, Inc., 59
37  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
38  *
39  * Revisions   :
40  *    $Log: config.h.in,v $
41  *    Revision 1.3  2001/05/29 09:50:24  jongfoster
42  *    Unified blocklist/imagelist/permissionslist.
43  *    File format is still under discussion, but the internal changes
44  *    are (mostly) done.
45  *
46  *    Also modified interceptor behaviour:
47  *    - We now intercept all URLs beginning with one of the following
48  *      prefixes (and *only* these prefixes):
49  *        * http://i.j.b/
50  *        * http://ijbswa.sf.net/config/
51  *        * http://ijbswa.sourceforge.net/config/
52  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
53  *    - Internal changes so that intercepted and fast redirect pages
54  *      are not replaced with an image.
55  *    - Interceptors now have the option to send a binary page direct
56  *      to the client. (i.e. ijb-send-banner uses this)
57  *    - Implemented show-url-info interceptor.  (Which is why I needed
58  *      the above interceptors changes - a typical URL is
59  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
60  *      The previous mechanism would not have intercepted that, and
61  *      if it had been intercepted then it then it would have replaced
62  *      it with an image.)
63  *
64  *    Revision 1.3  2001/05/26 01:26:34  jongfoster
65  *    New #define, WIN_GUI_EDIT, enables the (embryonic) Win32 GUI editor.
66  *    This #define cannot be set from ./configure - there's no point, it
67  *    doesn't work yet.  See feature request # 425722
68  *
69  *    Revision 1.2  2001/05/22 17:43:35  oes
70  *
71  *    - Enabled filtering banners by size rather than URL
72  *      by adding patterns that replace all standard banner
73  *      sizes with the "Junkbuster" gif to the re_filterfile
74  *
75  *    - Enabled filtering WebBugs by providing a pattern
76  *      which kills all 1x1 images
77  *
78  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
79  *      which is selected by the (nonstandard and therefore
80  *      capital) letter 'U' in the option string.
81  *      It causes the quantifiers to be ungreedy by default.
82  *      Appending a ? turns back to greedy (!).
83  *
84  *    - Added a new interceptor ijb-send-banner, which
85  *      sends back the "Junkbuster" gif. Without imagelist or
86  *      MSIE detection support, or if tinygif = 1, or the
87  *      URL isn't recognized as an imageurl, a lame HTML
88  *      explanation is sent instead.
89  *
90  *    - Added new feature, which permits blocking remote
91  *      script redirects and firing back a local redirect
92  *      to the browser.
93  *      The feature is conditionally compiled, i.e. it
94  *      can be disabled with --disable-fast-redirects,
95  *      plus it must be activated by a "fast-redirects"
96  *      line in the config file, has its own log level
97  *      and of course wants to be displayed by show-proxy-args
98  *      Note: Boy, all the #ifdefs in 1001 locations and
99  *      all the fumbling with configure.in and acconfig.h
100  *      were *way* more work than the feature itself :-(
101  *
102  *    - Because a generic redirect template was needed for
103  *      this, tinygif = 3 now uses the same.
104  *
105  *    - Moved GIFs, and other static HTTP response templates
106  *      to project.h
107  *
108  *    - Many minor fixes
109  *
110  *    - Removed some >400 CRs again (Jon, you really worked
111  *      a lot! ;-)
112  *
113  *    Revision 1.1.1.1  2001/05/15 13:58:45  oes
114  *    Initial import of version 2.9.3 source tree
115  *
116  *
117  *********************************************************************/
118 \f
119
120 /* Define to empty if the keyword does not work.  */
121 #undef const
122
123 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
124 #undef size_t
125
126 /* Define if you have the ANSI C header files.  */
127 #undef STDC_HEADERS
128
129 /*
130  * Version number - Major (X._._)
131  */
132 #undef VERSION_MAJOR
133
134 /*
135  * Version number - Minor (_.X._)
136  */
137 #undef VERSION_MINOR
138
139 /*
140  * Version number - Point (_._.X)
141  */
142 #undef VERSION_POINT
143
144 /*
145  * Version number, as a string
146  */
147 #undef VERSION
148
149 /*
150  * Status of the code: alpha, beta or stable
151  */
152 #undef CODE_STATUS
153
154 /*
155  * Regular expression matching for URLs.  (Highly recommended).  If this is 
156  * not defined then you can ony use prefix matching.
157  */
158 #undef REGEX
159
160 /*
161  * Allow JunkBuster to be "disabled" so it is just a normal non-blocking
162  * non-anonymizing proxy.  This is useful if you're trying to access a
163  * blocked or broken site - just change the setting in the config file
164  * and send a SIGHUP (UN*X), or use the handy "Disable" menu option (Windows
165  * GUI).
166  */
167 #undef TOGGLE
168
169 /*
170  * Enables arbitrary content modification regexps
171  */
172 #undef PCRS
173
174 /*
175  * If a stream is compressed via gzip (Netscape specific I think), then
176  * it cannot be modified with Perl regexps.  This forces it to be 
177  * uncompressed.
178  */
179 #undef DENY_GZIP
180
181 /*
182  * Enables statistics function.
183  */
184 #undef STATISTICS
185
186 /*
187  * Bypass filtering for 1 page only
188  */
189 #undef FORCE_LOAD
190
191 /*
192  * Locally redirect remote script-redirect URLs
193  */
194 #undef FAST_REDIRECTS
195
196 /*
197  * Split the show-proxy-args page into a page for each config file.
198  */
199 #undef SPLIT_PROXY_ARGS
200
201 /*
202  * Kills JavaScript popups - window.open, onunload, etc.
203  */
204 #undef KILLPOPUPS
205
206 /*
207  * Support for webDAV - e.g. so Microsoft Outlook can access HotMail e-mail
208  */
209 #undef WEBDAV
210
211 /*
212  * Detect image requests automatically for MSIE.  Will fall back to
213  * other image-detection methods (i.e. "+image" permission) for other
214  * browsers.
215  *
216  * You must also define IMAGE_BLOCKING to use this feature.
217  *
218  * It detects the following header pair as an image request:
219  *
220  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
221  * Accept: * / *
222  *
223  * And the following as a HTML request:
224  *
225  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
226  * Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, * / *
227  *
228  * And no, I haven't got that backwards - IE is being wierd.
229  *
230  * Known limitations: 
231  * 1) If you press shift-reload on a blocked HTML page, you get
232  *    the image "blocked" page, not the HTML "blocked" page.
233  * 2) Once an image "blocked" page has been sent, viewing it 
234  *    in it's own browser window *should* bring up the HTML
235  *    "blocked" page, but it doesn't.  You need to clear the 
236  *    browser cache to get the HTML version again.
237  *
238  * These limitations are due to IE making inconsistent choices
239  * about which "Accept:" header to send.
240  */
241 #undef DETECT_MSIE_IMAGES
242
243 /*
244  * Allow blocking using images as well as HTML.
245  * If you do not define this then everything is blocked as HTML.
246  *
247  * Note that this is required if you want to use DETECT_MSIE_IMAGES.
248  */
249 #undef IMAGE_BLOCKING
250
251 /*
252  * Allows the use of ACL files to control access to the proxy by IP address.
253  */
254 #undef ACL_FILES
255
256 /*
257  * Allows the use of trust files.
258  */
259 #undef TRUST_FILES
260
261 /*
262  * Allows the use of jar files to capture cookies.
263  */
264 #undef JAR_FILES
265
266 /*
267  * Use PCRE rather than GNU Regex
268  */
269 #undef PCRE
270
271 /* Define if you have the bcopy function.  */
272 #undef HAVE_BCOPY
273
274 /* Define if you have the memmove function.  */
275 #undef HAVE_MEMMOVE
276
277 /* Define if you have the strerror function.  */
278 #undef HAVE_STRERROR
279
280 #endif /* _CONFIG_H */