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