Fix Mac OSX compiler warnings
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.40 2002/03/28 04:22:44 hal9 Exp $
4 #
5 # Written by and Copyright (C) 2001 the SourceForge
6 # Privoxy team. http://www.privoxy.org/
7 #
8 # Based on the Internet Junkbuster originally written
9 # by and Copyright (C) 1997 Anonymous Coders and 
10 # Junkbusters Corporation.  http://www.junkbusters.com
11 #
12 # This program is free software; you can redistribute it 
13 # and/or modify it under the terms of the GNU General
14 # Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at
16 # your option) any later version.
17 #
18 # This program is distributed in the hope that it will
19 # be useful, but WITHOUT ANY WARRANTY; without even the
20 # implied warranty of MERCHANTABILITY or FITNESS FOR A
21 # PARTICULAR PURPOSE.  See the GNU General Public
22 # License for more details.
23 #
24 # The GNU General Public License should be included with
25 # this file.  If not, you can view it at
26 # http://www.gnu.org/copyleft/gpl.html
27 # or write to the Free Software Foundation, Inc., 59
28 # Temple Place - Suite 330, Boston, MA  02111-1307, USA.
29 #
30
31 #############################################################################
32 # Set make command correctly
33 #############################################################################
34 @SET_MAKE@
35
36 #############################################################################
37 # Version number (for RPM)
38 #############################################################################
39
40 VERSION_MAJOR = @VERSION_MAJOR@
41 VERSION_MINOR = @VERSION_MINOR@
42 VERSION_POINT = @VERSION_POINT@
43 CODE_STATUS   = @CODE_STATUS@
44 VERSION       = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
45 # will automatically be postfixed with -$(RPM_PACKAGEV) in the SPECfile
46 RPM_VERSION   = $(VERSION)
47 RPM_PACKAGEV  = @VERSION_RPM_PACKAGE@
48
49
50 #############################################################################
51 # Directories for "make install"
52 #############################################################################
53
54 DEST        = @sysconfdir@/privoxy
55 SBIN_DEST   = @sbindir@
56 MAN_DEST    = @mandir@
57
58
59 #############################################################################
60 # Build tools
61 #############################################################################
62
63 PROGRAM    = privoxy@EXEEXT@
64 CC         = @CC@
65 ECHO       = echo
66 GZIP_PROG  = gzip
67 INSTALL    = cp -f
68 LD         = @CC@
69 RM         = rm -f
70 STRIP_PROG = strip
71 SED        = sed
72 CAT        = cat
73 RPM        = rpm
74 MV         = mv
75 TAR        = tar
76 MAKE       = make
77 LN         = ln
78 WDUMP      = @WDUMP@ -dump
79 JADEBIN    = @JADEBIN@
80 DB         = $(JADEBIN) -t sgml -ihtml -D.. -d ldpOK.dsl\#html
81 DB2HTML    = @DB2HTML@
82 DKPREFIX   = @DKPREFIX@
83 MAN2HTML   = @MAN2HTML@
84 G2H_CMD    = groff -mandoc -Thtml
85 TARGET_OS  = @host@
86
87 # Program to do LF->CRLF
88 #
89 # The sed version should be the most portable, but it doesn't for for me,
90 # the other two do.  FIXME.
91 #   - Jon
92 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
93 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
94 DOSFILTER  = perl -p -e 's/\n/\r\n/'
95
96 #############################################################################
97 # Setup for make distribution rh and suse for now 
98 #############################################################################
99
100 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
101 RPM_BASE = @RPM_BASE@
102
103 #############################################################################
104 # Filenames and libraries
105 #############################################################################
106
107 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
108          errlog.c filters.c gateway.c jbsockets.c jcc.c killpopup.c \
109          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
110          urlmatch.c
111
112 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
113 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
114
115 CONFIG_FILES = config trust \
116                 default.action \
117                 basic.action intermediate.action advanced.action \
118                 default.filter \
119                 templates/*
120
121 DOC_FILES = AUTHORS LICENSE README ChangeLog doc/text/* privoxy.1
122
123 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c
124 W32_FILES = @WIN_ONLY@w32.res
125 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
126 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h
127 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
128 W32_INIS  = @WIN_ONLY@config.txt trust.txt
129
130 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
131 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
132 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
133
134 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
135 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
136 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
137
138 # No REGEX (Either because dynamically linked pcreposix, or no regex at all):
139 REGEX_SRC    =
140 # GNU REGEX:
141 @GNU_REGEX_ONLY@REGEX_SRC    = gnu_regex.c
142 # PCRE REGEX:
143 @PCRE_REGEX_ONLY@@STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
144
145 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
146 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
147
148 # Dependencies introduced by #include "project.h".
149 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
150
151 # Socket libraries for platforms that need them explicitly defined
152 SOCKET_LIB   = @SOCKET_LIB@
153
154 # PThreads library, if needed.
155 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
156
157 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
158 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
159 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
160 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
161
162
163 #############################################################################
164 # Compiler switches
165 #############################################################################
166
167 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
168 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
169 # Win32 GUI build.
170 # The flag "-pthread" is required if using Pthreads under Linux (and
171 # possibly other OSs).
172 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
173
174 # Add your flags here 
175 OTHER_CFLAGS =   
176
177 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
178          @STATIC_PCRE_ONLY@ -Ipcre 
179
180 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
181
182
183 #############################################################################
184 # Build section.
185 #
186 # There should NOT be any targets above this line.
187 #############################################################################
188 all: $(PROGRAM)
189
190
191 #############################################################################
192 # Phony targets
193 #############################################################################
194 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
195 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
196 install
197
198
199 #############################################################################
200 # Define this explicitly because Solaris is broken!
201 #############################################################################
202 %.o: %.c
203         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
204
205
206 #############################################################################
207 # Win32 config files
208 #############################################################################
209
210 inifiles: $(W32_INIS)
211
212 config.txt: config
213         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
214                -e 's!\jarfile jarfile!jarfile jar.log!' \
215                -e 's!\logfile logfile!logfile privoxy.log!' \
216                -e 's!#Win32-only: !!' \
217                < $< | \
218                $(DOSFILTER) > $@
219         # LF to CRLF in default.action
220         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
221         # LF to CRLF in default.filter
222         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
223
224 trust.txt: trust
225         $(DOSFILTER) < $< > $@ 
226
227 re_filterfile.txt: re_filterfile
228         $(DOSFILTER) < $< > $@ 
229
230
231 #############################################################################
232 # redhat distribution alpha and x86
233 #############################################################################
234
235 redhat-dist:
236         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
237                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
238                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
239                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
240                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
241                         exit 1; \
242                 fi; \
243         done; \
244
245         $(MAKE) clobber
246         if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
247
248         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
249         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
250              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
251               privoxy-rh.spec > $$TMPFILE ; then \
252       $(MV) -f $$TMPFILE privoxy-rh.spec; \
253    else \
254       $(ECHO) "Could not set version info in specfile."; \
255       exit 1;\
256    fi
257
258         $(TAR) --exclude "CVS" --exclude "privoxy-suse.spec" -czf $(TAR_ARCH) .
259         $(RPM) --clean -ta  $(TAR_ARCH)
260         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
261
262 #
263 # anonymously ncftps the rpms to sourceforge
264 #
265 redhat-upload:
266         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
267 # better should use `arch` here instead of ix86 to support other platforms too
268         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
269         @$(ECHO) -------------------------------------------------------
270         @$(ECHO) Now goto
271         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
272         @$(ECHO) ... and release the files.
273         @$(ECHO) -------------------------------------------------------
274      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
275
276 #############################################################################
277 # generic distribution
278 #############################################################################
279
280 gen-dist:
281         @$(ECHO) ""
282         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
283         @$(ECHO) ""
284         $(MAKE) $(PROGRAM)
285         $(STRIP_PROG) $(PROGRAM)
286         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
287 # add program
288         $(TAR) -C.. -cvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM)
289 # add config files
290         for foo in $(CONFIG_FILES); do \
291                 $(TAR) -C.. --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo; \
292         done; 
293 # add documentation
294         for foo in $(DOC_FILES); do \
295                 $(TAR) -C.. --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo; \
296         done; 
297 # and zip the archive
298         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
299         $(GZIP_PROG) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
300         @$(ECHO) Distribution with binary created.
301
302 # anonymously ncftps the tarball to sourceforge
303 gen-upload:
304         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
305         @$(ECHO) -------------------------------------------------------
306         @$(ECHO) Now goto
307         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
308         @$(ECHO) ... and release the files.
309         @$(ECHO) -------------------------------------------------------
310
311 # use with care
312 gen-clean:
313         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
314
315 #############################################################################
316 # solaris distribution
317 #############################################################################
318 solaris-dist: gen-dist
319         @$(ECHO) Done.
320 # anonymously ncftps the tarball to sourceforge
321 solaris-upload: gen-upload
322         @$(ECHO) Done.
323 # use with care
324 solaris-clean: gen-clean
325         @$(ECHO) Done.
326
327 #############################################################################
328 # hpux distribution
329 #############################################################################
330 hpux-dist:
331         @$(ECHO) coming soon. 
332 hpux-upload:
333         @$(ECHO) coming soon. 
334
335 #############################################################################
336 # debian distribution
337 #############################################################################
338 debian-dist:
339         @$(ECHO) coming soon. 
340 debian-upload:
341         @$(ECHO) coming soon. 
342
343 #############################################################################
344 # macosx distribution
345 #############################################################################
346 macosx-dist:
347         @$(ECHO) coming soon. 
348 macosx-upload:
349         @$(ECHO) coming soon. 
350
351 #############################################################################
352 # amiga distribution
353 #############################################################################
354 amiga-dist:
355         @$(ECHO) coming soon. 
356 amiga-upload:
357         @$(ECHO) coming soon. 
358
359 #############################################################################
360 # freebsd distribution
361 #############################################################################
362 freebsd-dist:
363         @$(ECHO) coming soon. 
364 freebsd-upload:
365         @$(ECHO) coming soon. 
366
367 #############################################################################
368 # suse distribution. works fine. no need to be root. 
369 #############################################################################
370 suse-dist:
371         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
372                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
373                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
374                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
375                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
376                         exit 1; \
377                 fi; \
378         done; \
379
380         $(MAKE) clobber
381         if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
382
383         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
384         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSIO)/g' \
385              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
386               privoxy-suse.spec > $$TMPFILE ; then \
387       $(MV) -f $$TMPFILE privoxy-suse.spec; \
388    else \
389       $(ECHO) "Could not set version info in specfile."; \
390       exit 1;\
391    fi
392
393         $(TAR) --exclude "CVS" --exclude "privoxy-rh.spec" -czf $(TAR_ARCH) .
394         $(RPM) --clean -ta  $(TAR_ARCH)
395         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
396
397 #
398 # anonymously ncftps the rpms to sourceforge
399 #
400 suse-upload:
401         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
402 # better should use `arch` here instead of ix86 to support other platforms too
403         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
404         @$(ECHO) -------------------------------------------------------
405         @$(ECHO) Now goto
406         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
407         @$(ECHO) ... and release the files.
408         @$(ECHO) -------------------------------------------------------
409
410 # handle with care. use with root.
411 suse-clean:
412         rpm -e junkbuster-suse || true
413         rm -rf /etc/junkbuster
414         rm -rf /etc/rc.d/junkbuster*
415         rm -rf /var/run/junkbuster.pid 
416         rm -rf /var/log/junkbuster
417         rm -f /etc/init.d/junkbuster
418         rm -f /usr/sbin/junkbuster
419         rm -f /usr/sbin/rcjunkbuster
420         rm -f /usr/share/man/man1/junkbuster.1.gz
421         rpm -e privoxy-suse || true
422         rm -rf /etc/privoxy
423         rm -rf /etc/rc.d/privoxy*
424         rm -rf /var/run/privoxy.pid 
425         rm -rf /var/log/privoxy
426         rm -f /etc/init.d/privoxy
427         rm -f /usr/sbin/privoxy
428         rm -f /usr/sbin/rcprivoxy
429         rm -f /usr/share/man/man1/privoxy.1.gz
430
431 #############################################################################
432 # Windows distribution
433 #############################################################################
434 win-dist:
435         $(ECHO) Not implemented.
436
437
438 #############################################################################
439 # Tarball distribution
440 #############################################################################
441 tarball-dist: clobber
442         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
443         $(TAR) -C.. --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -cvhzf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz privoxy-$(VERSION)-$(CODE_STATUS)
444         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
445         @$(ECHO) Tarball (without any binary) created.
446
447 # anonymously ncftps the tarball to sourceforge
448 tarball-upload:
449         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
450         @$(ECHO) -------------------------------------------------------
451         @$(ECHO) Now goto
452         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
453         @$(ECHO) ... and release the files.
454         @$(ECHO) -------------------------------------------------------
455
456 # handle with care
457 tarball-clean:
458         $(RM) privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
459
460 #############################################################################
461 #
462 # Documentation
463 #
464 # converts doc/source/*.sgml into html, text and man pages
465 #
466 #############################################################################
467 dok: doc/source/ldpOK.dsl man2html-swa
468         mkdir -p doc/text doc/man
469 #  user manual
470         rm -rf doc/webserver/user-manual
471         cd doc/source && $(DB2HTML) -s ldpOK.dsl user-manual.sgml && mv user-manual ../webserver
472         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks user-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/user-manual.txt && rm -rf tmp.html user-manual
473 ##  developer manual
474         rm -rf doc/webserver/developer-manual
475         cd doc/source && $(DB2HTML) -s ldpOK.dsl developer-manual.sgml && mv developer-manual ../webserver
476         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks developer-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/developer-manual.txt && rm -rf tmp.html developer-manual
477 ##  faq
478         rm -rf doc/webserver/faq
479         cd doc/source && $(DB2HTML) -s ldpOK.dsl faq.sgml && mv faq ../webserver
480         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks faq.sgml > tmp.html && lynx -dump tmp.html > ../text/faq.txt && rm -rf tmp.html faq
481 ## kludge to force recreation on next run. Rodgrigo?
482         @rm -f doc/source/ldpOK.dsl
483
484 man2html-swa:
485         mkdir -p doc/webserver/man-page
486         if [ "$(MAN2HTML)" != "false" ]; then \
487                 $(ECHO) "<html><head><title>Privoxy|Doc/Man page</title><link rel=\"stylesheet\" type=\"text/css\" href=\"../p_web.css\"></head><body><H2>NAME</H2>" > doc/webserver/man-page/privoxy-man-page.html; \
488                 man ./privoxy.1 | $(MAN2HTML) -bare \
489                  >> doc/webserver/man-page/privoxy-man-page.html; \
490                 $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html; \
491      else \
492           $(MAKE) groff2html; \
493         fi
494
495 redhat-dok: doc/source/ldpOK.dsl man2html
496         mkdir -p doc/text doc/man doc/source/user-manual \
497           doc/source/developer-manual doc/source/faq
498 ##  user manual
499         rm -rf doc/webserver/user-manual
500         cd doc/source/user-manual && $(DB) ../user-manual.sgml && cd .. &&\
501           mv user-manual ../webserver
502         cd doc/source && $(DB) -V nochunks user-manual.sgml > tmp.html && \
503           $(WDUMP) tmp.html > ../text/user-manual.txt && rm -rf tmp.html \
504           user-manual
505 ##  developer manual
506         rm -rf doc/webserver/developer-manual
507         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml &&\
508           cd .. && mv developer-manual ../webserver
509         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && \
510           $(WDUMP) tmp.html > ../text/developer-manual.txt && rm -rf tmp.html \
511           developer-manual
512 ##  faq
513         rm -rf doc/webserver/faq
514         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && mv faq ../webserver
515         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) \
516           tmp.html > ../text/faq.txt && rm -rf tmp.html faq
517 ## kludge to force recreation on next run. Rodgrigo?
518         @rm -f doc/source/ldpOK.dsl
519
520
521 doc/source/ldpOK.dsl:
522         if [ "$(DKPREFIX)" != "none" ]; then \
523                 sed -e "s@/usr/share/sgml/docbook/dsssl-stylesheets@$(DKPREFIX)@g" doc/source/ldp.dsl > doc/source/ldpOK.dsl; \
524         else \
525                 cp doc/source/ldp.dsl doc/source/ldpOK.dsl; \
526         fi
527
528 # For those with man2html ala RH7's.
529 man2html:
530         mkdir -p doc/webserver/man-page
531         if [ "$(MAN2HTML)" != "false" ]; then \
532                 $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > doc/webserver/man-page/privoxy-man-page.html; \
533            perl -pi -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' doc/webserver/man-page/privoxy-man-page.html; \
534      else \
535           $(MAKE) groff2html; \
536         fi
537
538 # Otherwise we get plain groff conversion.
539 groff2html:
540         $(G2H_CMD) ./privoxy.1 > doc/webserver/man-page/privoxy-man-page.html
541
542
543 #############################################################################
544 #
545 # Webserver
546 #
547 # moves dokumentation to webserver
548 #
549 #############################################################################
550 webserver:
551         @$(ECHO) -------------------------------------------------------
552         @$(ECHO) You have run make dok/redhat-dok before, right?
553         @$(ECHO) Note that this command scps all stuff to the webserver,
554         @$(ECHO) it will not remove obsolete documents.
555         @$(ECHO) -------------------------------------------------------
556         chmod -R a+r doc/webserver
557         find doc/webserver -type d -exec chmod a+rx {} \;
558         cd doc/webserver && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
559
560 #############################################################################
561 # Source file dependencies
562 #############################################################################
563
564 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
565 cgi.@OBJEXT@:       cgi.c       cgi.h       config.h $(PROJECT_H_DEPS) cgiedit.h cgisimple.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
566 cgiedit.@OBJEXT@:   cgiedit.c   cgiedit.h   config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
567 cgisimple.@OBJEXT@: cgisimple.c cgisimple.h config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
568 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
569 encode.@OBJEXT@:    encode.c    encode.h    config.h
570 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
571 filters.@OBJEXT@:   filters.c   filters.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h gateway.h jbsockets.h jcc.h loadcfg.h parsers.h ssplit.h cgi.h deanimate.h @WIN_ONLY@win32.h 
572 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
573 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
574 jcc.@OBJEXT@:       jcc.c       jcc.h       config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h killpopup.h loadcfg.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h cgi.h
575 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
576 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
577 loadcfg.@OBJEXT@:   loadcfg.c   loadcfg.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h jcc.h killpopup.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h
578 loaders.@OBJEXT@:   loaders.c   loaders.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h filters.h gateway.h jcc.h loadcfg.h miscutil.h parsers.h ssplit.h
579 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
580 parsers.@OBJEXT@:   parsers.c   parsers.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h filters.h jbsockets.h jcc.h loadcfg.h loaders.h miscutil.h ssplit.h
581 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
582 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
583
584 # GNU regex
585 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
586
587 # PCRS
588 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
589
590 # PCRE
591 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
592 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
593 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
594 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
595 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
596
597 # An auxiliary program makes the PCRE default character table source
598
599 pcre/chartables.c:   pcre/dftables@EXEEXT@
600                 pcre/dftables@EXEEXT@ >pcre/chartables.c
601
602 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
603                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
604
605 # Win32
606 w32log.@OBJEXT@: w32log.c errlog.h config.h jcc.h loadcfg.h miscutil.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h w32taskbar.h win32.h
607 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
608 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
609
610 w32.res: w32.rc w32res.h icons/ico00001.ico icons/ico00002.ico icons/ico00003.ico icons/ico00004.ico icons/ico00005.ico icons/ico00006.ico icons/ico00007.ico icons/ico00008.ico icons/idle.ico icons/privoxy.ico config.h
611         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
612
613 # AmigaOS
614 @AMIGAOS_ONLY@OBJS += amiga.o
615 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
616 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
617 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
618 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
619
620
621 $(PROGRAM): $(OBJS) $(W32_FILES)
622         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
623
624 clean:
625         $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) junkbuster
626
627 clobber: clean
628         $(RM) $(PROGRAM) cscope.* logfile *.pdb *.lib *.exp `find . -name tags` `find . -name TAGS` config.status config.h.in config.log junkbuster.log privoxy.log config.cache *~ *.tar.gz configure
629
630 tags: $(SRCS) $(HDRS)
631         etags $(SRCS) $(HDRS)
632
633 install: all
634         #
635         # FIXME: This is a dirty hack to have an install target
636         #        that works at least for some setups. This needs
637         #        to be fixed!
638         #
639         $(STRIP_PROG) $(PROGRAM)
640         $(INSTALL) $(PROGRAM) $(SBIN_DEST)
641         mkdir -p $(DEST)/user-manual
642         mkdir -p $(DEST)/templates
643         cp -r doc/webserver/user-manual $(DEST)
644         cp -r templates $(DEST)
645         $(INSTALL) config default.action default.filter trust $(DEST)
646         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
647         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
648         $(INSTALL) privoxy.init /etc/init.d/privoxy
649
650
651 #############################################################################
652
653 ## Local Variables:
654 ## tab-width: 3
655 ## end:
656
657 # $Log: GNUmakefile.in,v $
658 # Revision 1.40  2002/03/28 04:22:44  hal9
659 # More on man2html stuff.
660 #
661 # Revision 1.39  2002/03/28 01:04:14  hal9
662 # More man2html stuff for docs.
663 #
664 # Revision 1.38  2002/03/27 16:02:30  swa
665 # have a generic target
666 #
667 # Revision 1.37  2002/03/27 15:30:26  swa
668 # have a consistent appearance
669 #
670 # Revision 1.36  2002/03/27 14:58:08  swa
671 # can be used by mutilple targets
672 #
673 # Revision 1.35  2002/03/27 14:53:19  swa
674 # added solaris-dist
675 #
676 # Revision 1.34  2002/03/27 10:30:11  swa
677 # we want a html man file on the webserver
678 #
679 # Revision 1.33  2002/03/27 03:05:35  hal9
680 # Added man2html target for docs (redhat-dok only for now)
681 #
682 # Revision 1.32  2002/03/26 22:29:54  swa
683 # we have a new homepage!
684 #
685 # Revision 1.31  2002/03/26 14:00:18  swa
686 # fixed make tarball, tarball-dist, tarball-clean
687 #
688 # Revision 1.30  2002/03/25 12:52:25  swa
689 # new targets
690 #
691 # Revision 1.29  2002/03/24 17:03:55  jongfoster
692 # Name change
693 #
694 # Revision 1.28  2002/03/24 16:19:48  swa
695 # configure needs to be generated.
696 #
697 # Revision 1.27  2002/03/24 16:13:57  swa
698 # generated files are a nono in cvs
699 #
700 # Revision 1.26  2002/03/24 15:36:02  swa
701 # did not build.
702 #
703 # Revision 1.25  2002/03/24 14:31:08  swa
704 # remove more crappy files. set RPM
705 # release version correctly.
706 #
707 # Revision 1.24  2002/03/24 14:19:55  swa
708 # set rpm package release in configure.in. nowhere else.
709 #
710 # Revision 1.23  2002/03/24 13:06:49  swa
711 # suse-clean now runs fine
712 #
713 # Revision 1.22  2002/03/24 12:56:21  swa
714 # name change related issues.
715 #
716 # Revision 1.21  2002/03/24 12:43:57  swa
717 # name change
718 #
719 # Revision 1.20  2002/03/24 11:39:17  jongfoster
720 # Renaming config files
721 #
722 # Revision 1.19  2002/03/22 20:53:03  morcego
723 # - Ongoing process to change name to JunkbusterNG
724 # - configure/configure.in: no change needed
725 # - GNUmakefile.in:
726 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
727 #         - PROGRAM    = jbng@EXEEXT@
728 #         - rh-spec now references as junkbusterng-rh.spec
729 #         - redhat-upload: references changed to junkbusterng-* (package names)
730 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
731 #         - tarball-src: now JunkbusterNG-*
732 #         - install: initscript now junkbusterng.init and junkbusterng (when
733 #                    installed)
734 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
735 # - junkbusterng.spec:
736 #         - References to the expression ijb where changed where possible
737 #         - New package name: junkbusterng (all in lower case, acording to
738 #           the LSB recomendation)
739 #         - Version changed to: 2.9.13
740 #         - Release: 1
741 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
742 #           right. If it obsoletes, why conflict ? Have to check it later)
743 #         - Summary changed: Stefan, please check and aprove it
744 #         - Changes description to use the new name
745 #         - Sed string was NOT changed. Have to wait to the manpage to
746 #           change first
747 #         - Keeping the user junkbuster for now. It will require some aditional
748 #           changes on the script (scheduled for the next specfile release)
749 #         - Added post entry to move the old logfile to the new log directory
750 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
751 #           added to the startup list).
752 #         - Added preun section to stop the service with the old name, as well
753 #           as remove it from the startup list
754 #         - Removed the chkconfig --del entry from the conditional block on
755 #           the preun scriptlet (now handled on the %files section)
756 # - junkbuster.init: renamed to junkbusterng.init
757 # - junkbusterng.init:
758 #         - Changed JB_BIN to jbng
759 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
760 #           be used where necessary (config dir)
761 #
762 # Aditional notes:
763 # - The config directory is /etc/junkbuster yet. Have to change it on the
764 # specfile, after it is changes on the code
765 # - The only files that got renamed on the cvs tree were the rh specfile and
766 # the init file. Some file references got changes on the makefile and on the
767 # rh-spec (as listed above)
768 #
769 # Revision 1.18  2002/03/21 23:00:00  swa
770 # want to autogenerate stuff.
771 #
772 # Revision 1.17  2002/03/19 19:30:04  morcego
773 # - Fixing stylesheet checking on configure. If it is found, no further checks
774 #   should be done
775 #
776 # - configure will now check for db2html or docbook2html (should work now
777 #   on SuSe without the docbktls package)
778 #
779 # Revision 1.16  2002/03/14 22:32:32  hal9
780 # Bumped the RPM version.
781 #
782 # Revision 1.15  2002/03/08 20:00:28  swa
783 # some leftovers.
784 #
785 # Revision 1.14  2002/03/07 18:25:56  swa
786 # synced redhat and suse build process
787 #
788 # Revision 1.13  2002/03/07 17:17:56  oes
789 # (Hopefully) fixed for older make versions
790 #
791 # Revision 1.12  2002/03/07 15:28:27  swa
792 # more informative
793 #
794 # Revision 1.11  2002/03/06 14:33:18  sarantis
795 # Use proper temp file, not "abc".
796 #
797 # Revision 1.10  2002/03/06 14:19:35  sarantis
798 # Cleanup PID_FILE_PATH from redhat-dist target
799 #
800 # Revision 1.9  2002/03/05 17:31:11  morcego
801 # Search for docbook.dsl. Should solve portability problems for SuSe.
802 #
803 # Revision 1.8  2002/03/05 14:07:42  morcego
804 # configure now detects rpm topdir, and change GNUmakefile acordingly
805 #    (based on sugestion by Sarantis Paskalis)
806 #
807 # Revision 1.7  2002/03/05 13:43:28  morcego
808 # Checking for text browser, so redhat-dok can work.
809 #
810 # Revision 1.6  2002/03/05 13:10:51  morcego
811 # Changes to implement redhat-dok (Hal Burgiss)
812 # Changes to make it work on other distros and out-of-the-shelf configurations
813 #
814 # Revision 1.5  2002/02/27 15:30:39  hal9
815 # Reset $(RPM_PACKAGEV) to 1 (was 2)
816 #
817 # Revision 1.4  2002/01/17 21:44:04  jongfoster
818 # Adding urlmatch.[ch]
819 #
820 # Revision 1.3  2002/01/04 15:26:08  oes
821 # Added tarball-src target
822 #
823 # Revision 1.2  2001/12/30 14:07:31  steudten
824 # - Add signal handling (unix)
825 # - Add SIGHUP handler (unix)
826 # - Add creation of pidfile (unix)
827 # - Add action 'top' in rc file (RH)
828 # - Add entry 'SIGNALS' to manpage
829 # - Add exit message to logfile (unix)
830 #
831 # Revision 1.1  2001/12/01 11:22:57  jongfoster
832 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
833 # make break in a more obvious way.
834 # Adding .PHONY section.
835 #
836 # Revision 1.40  2001/12/01 00:24:11  jongfoster
837 # Renaming various config files
838 # Fixing CR->CRLF under Win32 (I hope)
839 #
840 # Revision 1.39  2001/11/06 12:07:30  steudten
841 # Add --clean for building rpm in target redhat-dist.
842 #
843 # Revision 1.38  2001/11/05 21:35:23  steudten
844 # Complete rewrite for the 'redhat-dist' target.
845 # Checks for writeable RPM build directories for calling user.
846 # So you must not be root, just set the modes to 1777 to
847 # build a RH package.
848 # Fix the upload-target to be arch independant.
849 # Add target for 'solaris-dist' - coming soon.
850 #
851 # Revision 1.37  2001/11/01 00:52:04  hal9
852 # Redhat-upload stuff per Stefan.
853 #
854 # Revision 1.36  2001/10/31 19:26:13  swa
855 # automate process of uploading new releases
856 # to sf.
857 #
858 # Revision 1.35  2001/10/15 22:14:59  joergs
859 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
860 #  the general CFLAGS already.
861 #
862 # Revision 1.34  2001/10/15 18:28:06  steudten
863 # remove config.cache for target clobber.
864 # Cleanup make dist for RH and S.u.S.E.
865 #
866 # Revision 1.33  2001/10/10 12:43:33  oes
867 # Added ugly hack to make install target work at least for some setups.
868 #
869 # Revision 1.32  2001/10/09 22:38:19  jongfoster
870 # Correcting actionsfile filename for Win32 INI build
871 #
872 # Revision 1.31  2001/09/23 10:13:48  swa
873 # upload process established. run make webserver and
874 # the documentation is moved to the webserver. documents
875 # are now linked correctly.
876 #
877 # Revision 1.30  2001/09/19 17:55:49  oes
878 # Fixed CFLAGS
879 #
880 # Revision 1.29  2001/09/16 17:34:27  jongfoster
881 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
882 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
883 # of build problems.
884 #
885 # Revision 1.28  2001/09/13 15:19:08  swa
886 # we want text files as well.
887 #
888 # Revision 1.27  2001/09/13 13:11:37  steudten
889 #
890 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
891 #
892 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
893 # Mac OSX (Darwin) support added.
894 #
895 # Revision 1.25  2001/09/12 22:55:45  joergs
896 # AmigaOS support added.
897 #
898 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
899 #
900 # OS/2 port: update autoconf'd support for the platform.
901 #
902 # Revision 1.23  2001/09/12 16:28:42  swa
903 # added "make dok" section to generate html pages from
904 # the sgml source documents. note that the we do not want
905 # generated stuff in cvs.
906 #
907 # Revision 1.22  2001/09/10 16:31:23  swa
908 # buildroot definition in the specfile fucks up the build
909 # process under suse. hence I moved it to the "rpm -ta"
910 # command
911 #
912 # Revision 1.21  2001/09/10 11:12:49  oes
913 # Turning on -Wall
914 #
915 # Revision 1.20  2001/08/02 22:04:29  jongfoster
916 # Removing some remaining references to obsolete w32rulesdlg.[ch]
917 #
918 # Revision 1.19  2001/07/30 22:14:03  jongfoster
919 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
920 #
921 # Revision 1.18  2001/07/29 17:09:17  jongfoster
922 # Major changes to build system in order to fix these bugs:
923 # - pthreads under Linux was broken - changed -lpthread to -pthread
924 # - Compiling in MinGW32 mode under CygWin now correctly detects
925 #   which shared libraries are available
926 # - Solaris support (?) (Not tested under Solaris yet)
927 #
928 # Revision 1.17  2001/07/28 16:44:54  oes
929 # Fixed sed LF->CRLF conversion and removed deprecated files
930 #
931 # Revision 1.16  2001/07/15 19:45:33  jongfoster
932 # Added support for linking with POSIX threads library
933 #
934 # Revision 1.15  2001/07/13 13:48:07  oes
935 #  - Moved STATIC #define for pcre to (ac)config.h
936 #  - Made -Ipcre depandant on static pcre compilation to
937 #    avoid version conflicts
938 #  - Included compilation and depandancies for new deanimate.c
939 #  - Made changes to the pcre/pcreposix/pcrs build process
940 #    as required by the new library autodetection in
941 #    configure.in
942 #
943 # Revision 1.14  2001/07/01 16:27:44  oes
944 # Fixed misplaced dependancy
945 #
946 # Revision 1.13  2001/06/29 13:18:36  oes
947 # - added depandancy of filters.o on cgi.h
948 #
949 # Revision 1.12  2001/06/12 17:15:56  swa
950 # fixes, because a clean build on rh6.1 was impossible.
951 # GZIP confuses make, %configure confuses rpm, etc.
952 #
953 # Revision 1.11  2001/06/11 11:26:35  sarantis
954 # RPM version should be the same as ijbswa version.  The rpm release is
955 # specified in the specfile.
956 #
957 # Revision 1.10  2001/06/07 17:27:45  swa
958 # added suse build section
959 #
960 # Revision 1.9  2001/06/04 18:31:58  swa
961 # files are now prefixed with either `confdir' or `logdir'.
962 # `make redhat-dist' replaces both entries confdir and logdir
963 # with redhat values
964 #
965 # Revision 1.8  2001/06/04 10:44:57  swa
966 # `make redhatr-dist' now works. Except for the paths
967 # in the config file.
968 #
969 # Revision 1.7  2001/06/03 17:09:09  swa
970 # swa for oes: reversed my earlier change
971 #
972 # Revision 1.6  2001/06/03 17:07:27  swa
973 # swa for oes
974 #
975 # Revision 1.5  2001/06/03 13:57:26  swa
976 # compile cgi.c (for andreas' GUI)
977 #
978 # Revision 1.4  2001/05/31 21:18:45  jongfoster
979 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
980 #
981 # Revision 1.3  2001/05/29 20:02:48  joergs
982 # Changes for AmigaOS added.
983 #
984 # Revision 1.2  2001/05/17 22:23:23  oes
985 #  - Added auto-generation of CRLFs for Win32 config files
986 #  - Added comment-prefix to all Win32-only options in the config file
987 #    and provided auto stripping of this prefix for the Win32 platform by make
988 #
989 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
990 # Initial import of version 2.9.3 source tree
991 #
992 #