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