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