* New upstream version.
authorRoland Rosenfeld <roland@spinnaker.de>
Sun, 11 Aug 2002 09:25:38 +0000 (09:25 +0000)
committerRoland Rosenfeld <roland@spinnaker.de>
Sun, 11 Aug 2002 09:25:38 +0000 (09:25 +0000)
  * Disable docbook, we use the precompiled docs (Closes: #155989).
  * 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.

debian/changelog
debian/init.d
debian/rules

index 0ca1b4f..ef8b75e 100644 (file)
@@ -1,3 +1,25 @@
+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.
index cca3a8b..012668d 100644 (file)
@@ -15,8 +15,10 @@ set -e
 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: "
@@ -46,7 +48,8 @@ case "$1" in
        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
index 3e2a141..7ccb731 100755 (executable)
@@ -36,7 +36,8 @@ configure-stamp:
        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