fixed make webserver. doh
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.42 2002/03/29 06:59:04 swa 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         find doc/webserver -type f -exec chmod 664 {} \;
557 # not sure if we need next line.swa.
558         chmod 775 doc/webserver/redirect.php
559         find doc/webserver -type d -exec chmod a+rx {} \;
560         cd doc/webserver && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
561
562 #############################################################################
563 # Source file dependencies
564 #############################################################################
565
566 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
567 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
568 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
569 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
570 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
571 encode.@OBJEXT@:    encode.c    encode.h    config.h
572 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
573 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 
574 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
575 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
576 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
577 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
578 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
579 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
580 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
581 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
582 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
583 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
584 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
585
586 # GNU regex
587 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
588
589 # PCRS
590 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
591
592 # PCRE
593 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
594 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
595 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
596 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
597 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
598
599 # An auxiliary program makes the PCRE default character table source
600
601 pcre/chartables.c:   pcre/dftables@EXEEXT@
602                 pcre/dftables@EXEEXT@ >pcre/chartables.c
603
604 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
605                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
606
607 # Win32
608 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
609 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
610 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
611
612 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
613         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
614
615 # AmigaOS
616 @AMIGAOS_ONLY@OBJS += amiga.o
617 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
618 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
619 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
620 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
621
622
623 $(PROGRAM): $(OBJS) $(W32_FILES)
624         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
625
626 clean:
627         $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) junkbuster
628
629 clobber: clean
630         $(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
631
632 tags: $(SRCS) $(HDRS)
633         etags $(SRCS) $(HDRS)
634
635 install: all
636         #
637         # FIXME: This is a dirty hack to have an install target
638         #        that works at least for some setups. This needs
639         #        to be fixed!
640         #
641         $(STRIP_PROG) $(PROGRAM)
642         $(INSTALL) $(PROGRAM) $(SBIN_DEST)
643         mkdir -p $(DEST)/user-manual
644         mkdir -p $(DEST)/templates
645         cp -r doc/webserver/user-manual $(DEST)
646         cp -r templates $(DEST)
647         $(INSTALL) config default.action default.filter trust $(DEST)
648         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
649         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
650         $(INSTALL) privoxy.init /etc/init.d/privoxy
651
652
653 #############################################################################
654
655 ## Local Variables:
656 ## tab-width: 3
657 ## end:
658
659 # $Log: GNUmakefile.in,v $
660 # Revision 1.42  2002/03/29 06:59:04  swa
661 # other users could not modify files on webserver
662 #
663 # Revision 1.41  2002/03/28 20:43:00  swa
664 # set make correctly
665 #
666 # Revision 1.40  2002/03/28 04:22:44  hal9
667 # More on man2html stuff.
668 #
669 # Revision 1.39  2002/03/28 01:04:14  hal9
670 # More man2html stuff for docs.
671 #
672 # Revision 1.38  2002/03/27 16:02:30  swa
673 # have a generic target
674 #
675 # Revision 1.37  2002/03/27 15:30:26  swa
676 # have a consistent appearance
677 #
678 # Revision 1.36  2002/03/27 14:58:08  swa
679 # can be used by mutilple targets
680 #
681 # Revision 1.35  2002/03/27 14:53:19  swa
682 # added solaris-dist
683 #
684 # Revision 1.34  2002/03/27 10:30:11  swa
685 # we want a html man file on the webserver
686 #
687 # Revision 1.33  2002/03/27 03:05:35  hal9
688 # Added man2html target for docs (redhat-dok only for now)
689 #
690 # Revision 1.32  2002/03/26 22:29:54  swa
691 # we have a new homepage!
692 #
693 # Revision 1.31  2002/03/26 14:00:18  swa
694 # fixed make tarball, tarball-dist, tarball-clean
695 #
696 # Revision 1.30  2002/03/25 12:52:25  swa
697 # new targets
698 #
699 # Revision 1.29  2002/03/24 17:03:55  jongfoster
700 # Name change
701 #
702 # Revision 1.28  2002/03/24 16:19:48  swa
703 # configure needs to be generated.
704 #
705 # Revision 1.27  2002/03/24 16:13:57  swa
706 # generated files are a nono in cvs
707 #
708 # Revision 1.26  2002/03/24 15:36:02  swa
709 # did not build.
710 #
711 # Revision 1.25  2002/03/24 14:31:08  swa
712 # remove more crappy files. set RPM
713 # release version correctly.
714 #
715 # Revision 1.24  2002/03/24 14:19:55  swa
716 # set rpm package release in configure.in. nowhere else.
717 #
718 # Revision 1.23  2002/03/24 13:06:49  swa
719 # suse-clean now runs fine
720 #
721 # Revision 1.22  2002/03/24 12:56:21  swa
722 # name change related issues.
723 #
724 # Revision 1.21  2002/03/24 12:43:57  swa
725 # name change
726 #
727 # Revision 1.20  2002/03/24 11:39:17  jongfoster
728 # Renaming config files
729 #
730 # Revision 1.19  2002/03/22 20:53:03  morcego
731 # - Ongoing process to change name to JunkbusterNG
732 # - configure/configure.in: no change needed
733 # - GNUmakefile.in:
734 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
735 #         - PROGRAM    = jbng@EXEEXT@
736 #         - rh-spec now references as junkbusterng-rh.spec
737 #         - redhat-upload: references changed to junkbusterng-* (package names)
738 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
739 #         - tarball-src: now JunkbusterNG-*
740 #         - install: initscript now junkbusterng.init and junkbusterng (when
741 #                    installed)
742 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
743 # - junkbusterng.spec:
744 #         - References to the expression ijb where changed where possible
745 #         - New package name: junkbusterng (all in lower case, acording to
746 #           the LSB recomendation)
747 #         - Version changed to: 2.9.13
748 #         - Release: 1
749 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
750 #           right. If it obsoletes, why conflict ? Have to check it later)
751 #         - Summary changed: Stefan, please check and aprove it
752 #         - Changes description to use the new name
753 #         - Sed string was NOT changed. Have to wait to the manpage to
754 #           change first
755 #         - Keeping the user junkbuster for now. It will require some aditional
756 #           changes on the script (scheduled for the next specfile release)
757 #         - Added post entry to move the old logfile to the new log directory
758 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
759 #           added to the startup list).
760 #         - Added preun section to stop the service with the old name, as well
761 #           as remove it from the startup list
762 #         - Removed the chkconfig --del entry from the conditional block on
763 #           the preun scriptlet (now handled on the %files section)
764 # - junkbuster.init: renamed to junkbusterng.init
765 # - junkbusterng.init:
766 #         - Changed JB_BIN to jbng
767 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
768 #           be used where necessary (config dir)
769 #
770 # Aditional notes:
771 # - The config directory is /etc/junkbuster yet. Have to change it on the
772 # specfile, after it is changes on the code
773 # - The only files that got renamed on the cvs tree were the rh specfile and
774 # the init file. Some file references got changes on the makefile and on the
775 # rh-spec (as listed above)
776 #
777 # Revision 1.18  2002/03/21 23:00:00  swa
778 # want to autogenerate stuff.
779 #
780 # Revision 1.17  2002/03/19 19:30:04  morcego
781 # - Fixing stylesheet checking on configure. If it is found, no further checks
782 #   should be done
783 #
784 # - configure will now check for db2html or docbook2html (should work now
785 #   on SuSe without the docbktls package)
786 #
787 # Revision 1.16  2002/03/14 22:32:32  hal9
788 # Bumped the RPM version.
789 #
790 # Revision 1.15  2002/03/08 20:00:28  swa
791 # some leftovers.
792 #
793 # Revision 1.14  2002/03/07 18:25:56  swa
794 # synced redhat and suse build process
795 #
796 # Revision 1.13  2002/03/07 17:17:56  oes
797 # (Hopefully) fixed for older make versions
798 #
799 # Revision 1.12  2002/03/07 15:28:27  swa
800 # more informative
801 #
802 # Revision 1.11  2002/03/06 14:33:18  sarantis
803 # Use proper temp file, not "abc".
804 #
805 # Revision 1.10  2002/03/06 14:19:35  sarantis
806 # Cleanup PID_FILE_PATH from redhat-dist target
807 #
808 # Revision 1.9  2002/03/05 17:31:11  morcego
809 # Search for docbook.dsl. Should solve portability problems for SuSe.
810 #
811 # Revision 1.8  2002/03/05 14:07:42  morcego
812 # configure now detects rpm topdir, and change GNUmakefile acordingly
813 #    (based on sugestion by Sarantis Paskalis)
814 #
815 # Revision 1.7  2002/03/05 13:43:28  morcego
816 # Checking for text browser, so redhat-dok can work.
817 #
818 # Revision 1.6  2002/03/05 13:10:51  morcego
819 # Changes to implement redhat-dok (Hal Burgiss)
820 # Changes to make it work on other distros and out-of-the-shelf configurations
821 #
822 # Revision 1.5  2002/02/27 15:30:39  hal9
823 # Reset $(RPM_PACKAGEV) to 1 (was 2)
824 #
825 # Revision 1.4  2002/01/17 21:44:04  jongfoster
826 # Adding urlmatch.[ch]
827 #
828 # Revision 1.3  2002/01/04 15:26:08  oes
829 # Added tarball-src target
830 #
831 # Revision 1.2  2001/12/30 14:07:31  steudten
832 # - Add signal handling (unix)
833 # - Add SIGHUP handler (unix)
834 # - Add creation of pidfile (unix)
835 # - Add action 'top' in rc file (RH)
836 # - Add entry 'SIGNALS' to manpage
837 # - Add exit message to logfile (unix)
838 #
839 # Revision 1.1  2001/12/01 11:22:57  jongfoster
840 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
841 # make break in a more obvious way.
842 # Adding .PHONY section.
843 #
844 # Revision 1.40  2001/12/01 00:24:11  jongfoster
845 # Renaming various config files
846 # Fixing CR->CRLF under Win32 (I hope)
847 #
848 # Revision 1.39  2001/11/06 12:07:30  steudten
849 # Add --clean for building rpm in target redhat-dist.
850 #
851 # Revision 1.38  2001/11/05 21:35:23  steudten
852 # Complete rewrite for the 'redhat-dist' target.
853 # Checks for writeable RPM build directories for calling user.
854 # So you must not be root, just set the modes to 1777 to
855 # build a RH package.
856 # Fix the upload-target to be arch independant.
857 # Add target for 'solaris-dist' - coming soon.
858 #
859 # Revision 1.37  2001/11/01 00:52:04  hal9
860 # Redhat-upload stuff per Stefan.
861 #
862 # Revision 1.36  2001/10/31 19:26:13  swa
863 # automate process of uploading new releases
864 # to sf.
865 #
866 # Revision 1.35  2001/10/15 22:14:59  joergs
867 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
868 #  the general CFLAGS already.
869 #
870 # Revision 1.34  2001/10/15 18:28:06  steudten
871 # remove config.cache for target clobber.
872 # Cleanup make dist for RH and S.u.S.E.
873 #
874 # Revision 1.33  2001/10/10 12:43:33  oes
875 # Added ugly hack to make install target work at least for some setups.
876 #
877 # Revision 1.32  2001/10/09 22:38:19  jongfoster
878 # Correcting actionsfile filename for Win32 INI build
879 #
880 # Revision 1.31  2001/09/23 10:13:48  swa
881 # upload process established. run make webserver and
882 # the documentation is moved to the webserver. documents
883 # are now linked correctly.
884 #
885 # Revision 1.30  2001/09/19 17:55:49  oes
886 # Fixed CFLAGS
887 #
888 # Revision 1.29  2001/09/16 17:34:27  jongfoster
889 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
890 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
891 # of build problems.
892 #
893 # Revision 1.28  2001/09/13 15:19:08  swa
894 # we want text files as well.
895 #
896 # Revision 1.27  2001/09/13 13:11:37  steudten
897 #
898 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
899 #
900 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
901 # Mac OSX (Darwin) support added.
902 #
903 # Revision 1.25  2001/09/12 22:55:45  joergs
904 # AmigaOS support added.
905 #
906 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
907 #
908 # OS/2 port: update autoconf'd support for the platform.
909 #
910 # Revision 1.23  2001/09/12 16:28:42  swa
911 # added "make dok" section to generate html pages from
912 # the sgml source documents. note that the we do not want
913 # generated stuff in cvs.
914 #
915 # Revision 1.22  2001/09/10 16:31:23  swa
916 # buildroot definition in the specfile fucks up the build
917 # process under suse. hence I moved it to the "rpm -ta"
918 # command
919 #
920 # Revision 1.21  2001/09/10 11:12:49  oes
921 # Turning on -Wall
922 #
923 # Revision 1.20  2001/08/02 22:04:29  jongfoster
924 # Removing some remaining references to obsolete w32rulesdlg.[ch]
925 #
926 # Revision 1.19  2001/07/30 22:14:03  jongfoster
927 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
928 #
929 # Revision 1.18  2001/07/29 17:09:17  jongfoster
930 # Major changes to build system in order to fix these bugs:
931 # - pthreads under Linux was broken - changed -lpthread to -pthread
932 # - Compiling in MinGW32 mode under CygWin now correctly detects
933 #   which shared libraries are available
934 # - Solaris support (?) (Not tested under Solaris yet)
935 #
936 # Revision 1.17  2001/07/28 16:44:54  oes
937 # Fixed sed LF->CRLF conversion and removed deprecated files
938 #
939 # Revision 1.16  2001/07/15 19:45:33  jongfoster
940 # Added support for linking with POSIX threads library
941 #
942 # Revision 1.15  2001/07/13 13:48:07  oes
943 #  - Moved STATIC #define for pcre to (ac)config.h
944 #  - Made -Ipcre depandant on static pcre compilation to
945 #    avoid version conflicts
946 #  - Included compilation and depandancies for new deanimate.c
947 #  - Made changes to the pcre/pcreposix/pcrs build process
948 #    as required by the new library autodetection in
949 #    configure.in
950 #
951 # Revision 1.14  2001/07/01 16:27:44  oes
952 # Fixed misplaced dependancy
953 #
954 # Revision 1.13  2001/06/29 13:18:36  oes
955 # - added depandancy of filters.o on cgi.h
956 #
957 # Revision 1.12  2001/06/12 17:15:56  swa
958 # fixes, because a clean build on rh6.1 was impossible.
959 # GZIP confuses make, %configure confuses rpm, etc.
960 #
961 # Revision 1.11  2001/06/11 11:26:35  sarantis
962 # RPM version should be the same as ijbswa version.  The rpm release is
963 # specified in the specfile.
964 #
965 # Revision 1.10  2001/06/07 17:27:45  swa
966 # added suse build section
967 #
968 # Revision 1.9  2001/06/04 18:31:58  swa
969 # files are now prefixed with either `confdir' or `logdir'.
970 # `make redhat-dist' replaces both entries confdir and logdir
971 # with redhat values
972 #
973 # Revision 1.8  2001/06/04 10:44:57  swa
974 # `make redhatr-dist' now works. Except for the paths
975 # in the config file.
976 #
977 # Revision 1.7  2001/06/03 17:09:09  swa
978 # swa for oes: reversed my earlier change
979 #
980 # Revision 1.6  2001/06/03 17:07:27  swa
981 # swa for oes
982 #
983 # Revision 1.5  2001/06/03 13:57:26  swa
984 # compile cgi.c (for andreas' GUI)
985 #
986 # Revision 1.4  2001/05/31 21:18:45  jongfoster
987 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
988 #
989 # Revision 1.3  2001/05/29 20:02:48  joergs
990 # Changes for AmigaOS added.
991 #
992 # Revision 1.2  2001/05/17 22:23:23  oes
993 #  - Added auto-generation of CRLFs for Win32 config files
994 #  - Added comment-prefix to all Win32-only options in the config file
995 #    and provided auto stripping of this prefix for the Win32 platform by make
996 #
997 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
998 # Initial import of version 2.9.3 source tree
999 #
1000 #