Hard tabs->Spaces
[privoxy.git] / config.h
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/Attic/config.h,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,v $
42  *    Revision 1.2  2001/05/20 01:21:20  jongfoster
43  *    Version 2.9.4 checkin.
44  *    - Merged popupfile and cookiefile, and added control over PCRS
45  *      filtering, in new "permissionsfile".
46  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
47  *      file error you now get a message box (in the Win32 GUI) rather
48  *      than the program exiting with no explanation.
49  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
50  *      skipping.
51  *    - Removed tabs from "config"
52  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
53  *    - Bumped up version number.
54  *
55  *    Revision 1.1.1.1  2001/05/15 13:58:49  oes
56  *    Initial import of version 2.9.3 source tree
57  *
58  *
59  *********************************************************************/
60 \f
61
62 /* Define to empty if the keyword does not work.  */
63 /* #undef const */
64
65 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
66 /* #undef size_t */
67
68 /* Define if you have the ANSI C header files.  */
69 #define STDC_HEADERS 1
70
71 /*
72  * Version number - Major (X._._)
73  */
74 #define VERSION_MAJOR 2
75
76 /*
77  * Version number - Minor (_.X._)
78  */
79 #define VERSION_MINOR 9
80
81 /*
82  * Version number - Point (_._.X)
83  */
84 #define VERSION_POINT 4
85
86 /*
87  * Version number, as a string
88  */
89 #define VERSION "2.9.4"
90
91 /*
92  * Regular expression matching for URLs.  (Highly recommended).  If this is 
93  * not defined then you can ony use prefix matching.
94  */
95 #define REGEX 1
96
97 /*
98  * Allow JunkBuster to be "disabled" so it is just a normal non-blocking
99  * non-anonymizing proxy.  This is useful if you're trying to access a
100  * blocked or broken site - just change the setting in the config file
101  * and send a SIGHUP (UN*X), or use the handy "Disable" menu option (Windows
102  * GUI).
103  */
104 #define TOGGLE 1
105
106 /*
107  * Enables arbitrary content modification regexps
108  */
109 #define PCRS 1
110
111 /*
112  * If a stream is compressed via gzip (Netscape specific I think), then
113  * it cannot be modified with Perl regexps.  This forces it to be 
114  * uncompressed.
115  */
116 #define DENY_GZIP 1
117
118 /*
119  * Enables statistics function.
120  */
121 #define STATISTICS 1
122
123 /*
124  * Bypass filtering for 1 page only
125  */
126 #define FORCE_LOAD 1
127
128 /*
129  * Split the show-proxy-args page into a page for each config file.
130  */
131 #define SPLIT_PROXY_ARGS 1
132
133 /*
134  * Kills JavaScript popups - window.open, onunload, etc.
135  */
136 #define KILLPOPUPS 1
137
138 /*
139  * Support for webDAV - e.g. so Microsoft Outlook can access HotMail e-mail
140  */
141 #define WEBDAV 1
142
143 /*
144  * Detect image requests automatically for MSIE.  Will fall back to
145  * other image-detection methods (i.e. USE_IMAGE_LIST) for other
146  * browsers.
147  *
148  * It detects the following header pair as an image request:
149  *
150  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
151  * Accept: * / *
152  *
153  * And the following as a HTML request:
154  *
155  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
156  * Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, * / *
157  *
158  * And no, I haven't got that backwards - IE is being wierd.
159  *
160  * Known limitations: 
161  * 1) If you press shift-reload on a blocked HTML page, you get
162  *    the image "blocked" page, not the HTML "blocked" page.
163  * 2) Once an image "blocked" page has been sent, viewing it 
164  *    in it's own browser window *should* bring up the HTML
165  *    "blocked" page, but it doesn't.  You need to clear the 
166  *    browser cache to get the HTML version again.
167  *
168  * These limitations are due to IE making inconsistent choices
169  * about which "Accept:" header to send.
170  */
171 #define DETECT_MSIE_IMAGES 1
172
173 /*
174  * Use image list to detect images.
175  * If you do not define this then everything is treated as HTML.
176  *
177  * Whatever the setting of this value, DETECT_MSIE_IMAGES will 
178  * override it for people using Internet Explorer.
179  */
180 #define USE_IMAGE_LIST 1
181
182 /*
183  * Allows the use of ACL files to control access to the proxy by IP address.
184  */
185 #define ACL_FILES 1
186
187 /*
188  * Allows the use of trust files.
189  */
190 #define TRUST_FILES 1
191
192 /*
193  * Allows the use of jar files to capture cookies.
194  */
195 #define JAR_FILES 1
196
197 /*
198  * Use PCRE rather than GNU Regex
199  */
200 #define PCRE 1
201
202 /* Define if you have the bcopy function.  */
203 #define HAVE_BCOPY 1
204
205 /* Define if you have the memmove function.  */
206 #define HAVE_MEMMOVE 1
207
208 /* Define if you have the strerror function.  */
209 #define HAVE_STRERROR 1
210
211 #endif /* _CONFIG_H */