+privoxy (2.9.20-1) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Roland Rosenfeld <roland@debian.org> Sun, 11 Aug 2002 11:05:01 +0200
+
+privoxy (2.9.18-2) unstable; urgency=low
+
+ * Disable docbook, we use the precompiled docs (Closes: #155989).
+
+ -- Roland Rosenfeld <roland@debian.org> Sat, 10 Aug 2002 09:36:58 +0200
+
+privoxy (2.9.18-1) unstable; urgency=low
+
+ * New upstream version.
+ * Use start-stop-daemon for starting privoxy to avoid problems on start,
+ when privoxy is already running (Closes: #154882).
+ * Undo broken -Ipcre inclusion in GNUmakefile.in, which causes trouble
+ with using wrong pcreposix.h.
+
+ -- Roland Rosenfeld <roland@debian.org> Thu, 8 Aug 2002 21:01:48 +0200
+
privoxy (2.9.16-1) unstable; urgency=low
* New upstream version.
case "$1" in
start)
echo -n "Starting $DESC: "
- $DAEMON --pidfile $PIDFILE --user $OWNER $CONFIGFILE 2>/dev/null
- echo "$NAME."
+ start-stop-daemon --oknodo --start --quiet --pidfile $PIDFILE \
+ --exec $DAEMON -- --pidfile $PIDFILE --user $OWNER $CONFIGFILE \
+ 2>/dev/null
+ echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --oknodo --stop --quiet --pidfile $PIDFILE \
--exec $DAEMON
sleep 1
- $DAEMON --pidfile $PIDFILE --user $OWNER $CONFIGFILE
+ start-stop-daemon --oknodo --start --quiet --pidfile $PIDFILE \
+ --exec $DAEMON -- --pidfile $PIDFILE --user $OWNER $CONFIGFILE
;;
*)
N=/etc/init.d/$NAME
autoconf
env CFLAGS=$(CFLAGS)
./configure --prefix=/usr --sysconfdir=/etc \
- --mandir=/usr/share/man $(WITHDEBUG) $(WITHOUTPTHREAD)
+ --mandir=/usr/share/man $(WITHDEBUG) $(WITHOUTPTHREAD) \
+ --with-docbook=no
touch configure-stamp