1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
|
privoxy (3.0.28-2+deb10u2) buster; urgency=medium
* 53_CVE-2021-44540: get_url_spec_param(): Free memory of compiled
pattern spec before bailing (CVE-2021-44540).
* 56_CVE-2021-44543: cgi_error_no_template(): Encode the template name
to prevent XSS (CVE-2021-44543).
-- Roland Rosenfeld <roland@debian.org> Tue, 07 Dec 2021 19:59:33 +0100
privoxy (3.0.28-2+deb10u1) buster; urgency=medium
* 38_CVE-2021-20217: Prevent an assertion by a crafted CGI request
(CVE-2021-20217).
* 39_decompress_iob: Fix detection of insufficient data.
* 40_CVE-2021-20216: Fix a memory leak (CVE-2021-20216).
* 41_CVE-2020-35502: Fixed memory leaks when a response is buffered and
the buffer limit is reached or Privoxy is running out of memory
(CVE-2020-35502).
* 42_CVE-2021-20209: Fixed a memory leak in the show-status CGI handler
when no action files are configured (CVE-2021-20209).
* 43_CVE-2021-20210: Fixed a memory leak in the show-status CGI handler
when no filter files are configured (CVE-2021-20210).
* 44_CVE-2021-20211: Fixes a memory leak when client tags are active
(CVE-2021-20211).
* 45_CVE-2021-20212: Fixed a memory leak if multiple filters are
executed and the last one is skipped due to a pcre error (CVE-2021-20212).
* 46_CVE-2021-20213: Prevent an unlikely dereference of a NULL-pointer
that could result in a crash if accept-intercepted-requests was
enabled, Privoxy failed to get the request destination from the Host
header and a memory allocation failed (CVE-2021-20213).
* 47_CVE-2021-20214: Fixed memory leaks in the client-tags CGI handler
when client tags are configured and memory allocations fail
(CVE-2021-20214).
* 48_CVE-2021-20215: Fixed memory leaks in the show-status CGI handler
when memory allocations fail (CVE-2021-20215).
* 49_CVE-2021-20272: ssplit(): Remove an assertion that could be
triggered with a crafted CGI request (CVE-2021-20272).
* 50_CVE-2021-20273: cgi_send_banner(): Overrule invalid image types.
Prevents a crash with a crafted CGI request if Privoxy is toggled off
(CVE-2021-20273).
* 51_CVE-2021-20275: chunked_body_is_complete(): Prevent invalid read of
size two (CVE-2021-20275).
* 52_CVE-2021-20276: Obsolete pcre: Prevent invalid memory accesses
(CVE-2021-20276).
-- Roland Rosenfeld <roland@debian.org> Mon, 08 Mar 2021 13:57:15 +0100
privoxy (3.0.28-2) unstable; urgency=medium
* d/tests/privoxy-regression-test: Remove tmpdir on exit.
* 36_trusted-cgi-referer-example: Comment trusted-cgi-referer pointing
to example.org
* d/maintscript: Remove orphaned /etc/privoxy/templates/show-version
(Closes: #918110).
* 37_ppedit-tests403: Update a bunch of regression tests that have to
expect status code 403 now.
* Enable enable-edit-actions in privoxy-regression-test again.
* Upgrade to debhelper v12.
* Update (minimal) upstream signing key.
* Add Pre-Depends: ${misc:Pre-Depends} for --skip-systemd-native.
-- Roland Rosenfeld <roland@debian.org> Sun, 06 Jan 2019 13:07:14 +0100
privoxy (3.0.28-1) unstable; urgency=medium
[ Roland Rosenfeld ]
* Add es debconf translation. Thanks to Jonathan Bustillos (Closes: #903863).
* 38_connection_close: Don't add a "Connection" header for CONNECT requests.
[ Ondřej Nový ]
* d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
* d/watch: Use https protocol
[ Roland Rosenfeld ]
* d/tests: Fix leftover ADTTMP.
* Add salsa CI pipeline in debian/gitlab-ci.yml.
* New upstream version 3.0.28.
* Adapt all patches to new version (06_8bit_manual is implemented in a
better way upstream now, 36_openspopenjade is replaced by some
autoconf code, 37_adventofcode and 38_connection_close are included
upstream).
* Update debian/copyright.
* Upgrade to Standards-Version 4.3.0 (Declare Rules-Requires-Root: no).
* Move PID file from /var/run to /run.
* Undo voodoo to remove CVS tags from configs since upstream uses git
now.
* Disable enable-edit-actions in privoxy-regression-test, since the test
seems to be broken (does not use referrer, which is required here).
-- Roland Rosenfeld <roland@debian.org> Mon, 31 Dec 2018 16:52:27 +0100
privoxy (3.0.26-6) unstable; urgency=medium
* Fix typo in patch description.
* postinst: avoid using chown -R.
* Move source.lintian-overrides to soure/lintian-overrides.
* Add Vcs-headers pointing to salsa.
* Upgrade to Standards-Version 4.1.4 (no changes).
-- Roland Rosenfeld <roland@debian.org> Sun, 29 Apr 2018 11:57:47 +0200
privoxy (3.0.26-5) unstable; urgency=medium
* Add ru debconf translation. Thanks to Lev Lamberov (Closes: #883110).
* Optimize patches for gbp pq.
* Upgrade to Standards-Version 4.1.3 (no changes).
* Upgrade to debhelper v11 (remove systemd from dh call).
-- Roland Rosenfeld <roland@debian.org> Sat, 20 Jan 2018 12:49:42 +0100
privoxy (3.0.26-4) unstable; urgency=medium
* Add pt debconf translation. Thanks to Rui Branco (Closes: #858743).
* Add description to 36_openspopenjade.patch.
* Upgrade to debhelper v10 and remove dh-systemd build dependency.
* debhelper v10 replaces autotools-dev.
* Remove Testsuite header, since this is automatically added.
* Upgrade to Standards-Version 4.1.1
- change copyrights-format to https.
-- Roland Rosenfeld <roland@debian.org> Wed, 01 Nov 2017 10:45:49 +0100
privoxy (3.0.26-3) unstable; urgency=medium
* Add da debconf translation. Thanks to Joe Dalton (Closes: #850876).
* 37_adventofcode: unlock adventofcode.com (Closes: #848211).
-- Roland Rosenfeld <roland@debian.org> Wed, 11 Jan 2017 22:24:55 +0100
privoxy (3.0.26-2) unstable; urgency=medium
* Add db_stop to postinst, since upgrade fails otherwise in some
situations (Closes: #835409).
* Replace sp and jade with opensp and openjade. Thanks to Neil Roeth
for providing a patch (Closes: #837207).
-- Roland Rosenfeld <roland@debian.org> Sat, 10 Sep 2016 08:48:35 +0200
privoxy (3.0.26-1) unstable; urgency=medium
* New upstream version 3.0.26.
* This includes 36_listen-nohost.patch.
* Updated all patches to new version.
-- Roland Rosenfeld <roland@debian.org> Sat, 27 Aug 2016 22:28:32 +0200
privoxy (3.0.25-2) unstable; urgency=medium
* Add pt_BR debconf translation. Thanks to Adriano Rafael Gomes
(Closes: #827327).
* Symlink p_doc.css to user-manual.
* Install regression-tests.action.
* Enable autopkgtest and run privoxy-regression-test.pl.
* Install privoxy-regression-test and man page to binary package.
* Updated debian/copyright to catch all copyright variants.
* Remove outdated stuff from README.Debian.
* 36_listen-nohost: Fix crashes with "listen-addr :8118" (Closes: #834941).
-- Roland Rosenfeld <roland@debian.org> Tue, 23 Aug 2016 09:27:34 +0200
privoxy (3.0.25-1) unstable; urgency=medium
* New upstream version 3.0.25 (beta).
* Adapt all patches to new upstream version.
* Update debian/copyright to new privoxy home.
* Add sv debconf translation. Thanks to Jonatan Nyberg (Closes: #824913).
* Add fr debconf translation. Thanks to Steve Petruzzello (Closes: #825478).
* Add nl debconf translation. Thanks to Frans Spiesschaert (Closes: #825691).
* privoxy.service: Run after network.target (Closes: #825358).
-- Roland Rosenfeld <roland@debian.org> Sat, 28 May 2016 23:13:56 +0200
privoxy (3.0.24-2) unstable; urgency=medium
* Upgrade Standards-Version to 3.9.8 (no changes).
* Add -p to QUILT_DIFF_OPTS.
* Add Documentation key to privoxy.service.
* 35_man-spelling: Fix spelling error in privoxy-log-parser(1).
* Add debconf and ucf support to make listen-address configurable.
Thanks to James Valleroy for providing the code (Closes: #798219).
* Remove 28_listen_localhost, but listen on 127.0.0.1:8118 and
[::1]:8118 by default, since otherwise privoxy listens only on IPv6
(Closes: #518010, #557443).
* Change several URLs from http to https.
-- Roland Rosenfeld <roland@debian.org> Sun, 01 May 2016 14:21:22 +0200
privoxy (3.0.24-1) unstable; urgency=medium
* New upstream version 3.0.24.
* This fixes CVE-2016-1982 and CVE-2016-1983.
* Adapt all patches to new upstream version.
-- Roland Rosenfeld <roland@debian.org> Fri, 22 Jan 2016 16:08:05 +0100
privoxy (3.0.23-5) unstable; urgency=medium
* Remove /lib/init/vars.sh from init script since it is no longer used.
As a consequence remove initscripts dependency (Closes: #804961).
* --enable-external-filters (Closes: #805296).
-- Roland Rosenfeld <roland@debian.org> Mon, 16 Nov 2015 21:05:41 +0100
privoxy (3.0.23-4) unstable; urgency=medium
* Add rotate option to init.d script.
* Change logrotate to use rotate option (Closes: #783399).
* privoxy.service: define SuccessExitStatus=15.
* Set locales to C.UTF-8 for doc generation to make build reproducible.
* Run wrap-and-sort.
* 34_system-docbook2man: Use Debian docbook2man-spec.pl (from
docbook-utils) instead of local copy, to make package reproducible.
* Stop runing "make man2html", since this overrides "make man", which
should work reproducible.
-- Roland Rosenfeld <roland@debian.org> Sat, 19 Sep 2015 15:05:41 +0200
privoxy (3.0.23-3) unstable; urgency=medium
* Since there are no new bugs found, this goes to unstable now.
* Depend on perl-base instead of full perl.
-- Roland Rosenfeld <roland@debian.org> Sun, 26 Apr 2015 11:01:08 +0200
privoxy (3.0.23-2) experimental; urgency=low
* Fix cleanup to allow build twice in a row.
* Preserve auto build configuration from source package.
* This version checks and fails if the config file has erros
(Closes: #518006).
* init script is no longer silent (Closes: #543811).
-- Roland Rosenfeld <roland@debian.org> Sat, 31 Jan 2015 12:31:26 +0100
privoxy (3.0.23-1) experimental; urgency=low
* New upstream version 3.0.23-stable.
* Update all patches.
-- Roland Rosenfeld <roland@debian.org> Mon, 26 Jan 2015 14:15:47 +0100
privoxy (3.0.22-1) unstable; urgency=low
* New upstream version 3.0.22-stable.
* Update all patches.
* Upgrade to Standards-Version 3.9.5 (no changes).
* Add upstream GPG signature check.
* Convert debian/copyright to DEP5.
-- Roland Rosenfeld <roland@debian.org> Sun, 16 Nov 2014 18:38:40 +0100
privoxy (3.0.21-7+deb8u1) jessie-security; urgency=high
* 40_CVE-2016-1982: Prevent invalid reads in case of corrupt
chunk-encoded content.
* 41_CVE-2016-1983: Remove empty Host headers in client requests.
Previously they would result in invalid reads.
-- Roland Rosenfeld <roland@debian.org> Fri, 22 Jan 2016 17:09:48 +0100
privoxy (3.0.21-7) unstable; urgency=medium
* 37_CVE-2015-1380: denial of service.
* 38_CVE-2015-1381: multiple segmentation faults and memory leaks in the
pcrs code.
* 39_CVE-2015-1382: invalid read.
* These 3 patches Closes: #776490.
-- Roland Rosenfeld <roland@debian.org> Wed, 28 Jan 2015 19:46:42 +0100
privoxy (3.0.21-5) unstable; urgency=low
* 34_CVE-2015-1030: Fix memory leak in rfc2553_connect_to(). CID 66382
* 35_CVE-2015-1031-CID66394: unmap(): Prevent use-after-free if the map
only consists of one item. CID 66394.
* 36_CVE-2015-1031-CID66376: pcrs_execute(): Consistently set *result to
NULL in case of errors. Should make use-after-free in the caller less
likely. CID 66391, CID 66376.
* These 3 patches Closes: #775167.
-- Roland Rosenfeld <roland@debian.org> Mon, 12 Jan 2015 08:44:23 +0100
privoxy (3.0.21-4) unstable; urgency=low
* Enable hardening=+all
* Hardcode PIDFile in privoxy.service, since this isn't allowed as
variable (Closes: #746262).
-- Roland Rosenfeld <roland@debian.org> Sat, 10 May 2014 14:19:03 +0200
privoxy (3.0.21-3) unstable; urgency=low
* When starting via systemd, do not run daemon as root, and honour log
file configuration. Thanks to Carlos Maddela for providing a patch
(Closes: #745274)
-- Roland Rosenfeld <roland@debian.org> Mon, 21 Apr 2014 17:24:01 +0200
privoxy (3.0.21-2) unstable; urgency=low
* Use autotools-dev for arm64 compatibility (Closes: #727948).
* Depend on initscripts >= 2.87dsf-8, (Closes: #564563).
* Add systemd support (Thanks to Michael Stapelberg) (Closes: #639635).
* Upgrade to Standards-Version 3.9.5 (no changes).
-- Roland Rosenfeld <roland@debian.org> Sat, 12 Apr 2014 12:54:58 +0200
privoxy (3.0.21-1) unstable; urgency=low
* New upstream version 3.0.21-stable.
* This fixes CVE-2013-2503 (Closes: #702896).
* Update all patches.
* Upgrade to Standards-Version 3.9.4 (no changes).
-- Roland Rosenfeld <roland@debian.org> Fri, 05 Jul 2013 14:46:54 +0200
privoxy (3.0.20-1) unstable; urgency=low
* New upstream version 3.0.20-beta.
* Update all patches.
* Remove 29_typos, which is incorporated upstream now.
* 33_manpage_hyphen: Replace all -- in man page by \-\- to make lintian
happy.
-- Roland Rosenfeld <roland@debian.org> Thu, 24 Jan 2013 17:40:51 +0100
privoxy (3.0.19-2+deb7u4) oldstable; urgency=high
* 42_CVE-2013-2503: Proxy authentication headers are removed unless the
new directive enable-proxy-authentication-forwarding is used.
Forwarding the headers potentionally allows malicious sites to trick
the user into providing it with login information (Closes: #702896).
-- Roland Rosenfeld <roland@debian.org> Tue, 08 Mar 2016 08:52:26 +0100
privoxy (3.0.19-2+deb7u3) wheezy-security; urgency=high
* 40_CVE-2016-1982: Prevent invalid reads in case of corrupt
chunk-encoded content.
* 41_CVE-2016-1983: Remove empty Host headers in client requests.
Previously they would result in invalid reads.
-- Roland Rosenfeld <roland@debian.org> Fri, 22 Jan 2016 17:51:41 +0100
privoxy (3.0.19-2+deb7u2) wheezy-security; urgency=medium
* 38_CVE-2015-1381: multiple segmentation faults and memory leaks in the
pcrs code.
* 39_CVE-2015-1382: invalid read.
* These 2 patches Closes: #776490 in wheezy.
-- Roland Rosenfeld <roland@debian.org> Wed, 28 Jan 2015 20:33:47 +0100
privoxy (3.0.19-2+deb7u1) stable-security; urgency=medium
* 35_CVE-2015-1031-CID66394: unmap(): Prevent use-after-free if the map
only consists of one item. CID 66394.
* 36_CVE-2015-1031-CID66376: pcrs_execute(): Consistently set *result to
NULL in case of errors. Should make use-after-free in the caller less
likely. CID 66391, CID 66376.
* These 2 patches Closes: #775167.
-- Roland Rosenfeld <roland@debian.org> Sat, 17 Jan 2015 17:20:15 +0100
privoxy (3.0.19-2) unstable; urgency=low
* Migrate from dpatch to 3.0 (quilt) format.
* Reformat all patches.
* Change build depenency from dpatch to debhelper (>= 9).
* Change debian/compat to "9".
* Complete rewrite of debian/rules.
* Now uses hardening via debhelper.
* Remove README.source.
* Update to Standards-Version 3.9.3 (no changes).
-- Roland Rosenfeld <roland@debian.org> Fri, 18 May 2012 21:24:55 +0200
privoxy (3.0.19-1) unstable; urgency=low
* New upstream version 3.0.19-stable.
* Adapt all patches to new version.
-- Roland Rosenfeld <roland@debian.org> Tue, 27 Dec 2011 11:19:53 +0100
privoxy (3.0.18-1) unstable; urgency=low
* New upstream version 3.0.18-stable.
* Adapt all patches to new version.
* Add build-targets build-arch and build-indep.
* Upgrade to Standards-Version 3.9.2 (no changes).
* 29_typo: most old typos are fixed now, but lintian found new ones.
-- Roland Rosenfeld <roland@debian.org> Mon, 21 Nov 2011 19:29:06 +0100
privoxy (3.0.17-1) unstable; urgency=low
* New upstream version 3.0.17-stable (Closes: #611016).
* Adapt all patches to the new version.
* Add debian/source/format (1.0).
* 29_typos: fix spelling of resource in privoxy-log-parser(1) man page.
* Upgrade to Standards-Version 3.9.1 (no changes).
* Add $named to Required-Start/Stop in init script. Thanks to Nikolaus
Schulz <microschulz@web.de> (Closes: #539405, #582710)
* Install /etc/privoxy/user.filter
-- Roland Rosenfeld <roland@debian.org> Tue, 01 Mar 2011 21:10:26 +0100
privoxy (3.0.16-1+deb6u2) squeeze-lts; urgency=high
* Non-maintainer upload by the Squeeze LTS Team.
* CVE-2016-1982
Prevent invalid reads in case of corrupt chunk-encoded content
* CVE-2016-1983
Remove empty Host headers in client requests; resulting in
invalid reads.
-- Thorsten Alteholz <debian@alteholz.de> Fri, 22 Jan 2016 18:03:02 +0100
privoxy (3.0.16-1+deb6u1) squeeze-lts; urgency=medium
* Non-maintainer upload by the Squeeze LTS team.
* Thanks to Roland Rosenfeld for maintaining privoxy and preparing these
patches:
- 35_CVE-2015-1031-CID66394: unmap(): Prevent use-after-free if the map
only consists of one item. CID 66394.
- 36_CVE-2015-1031-CID66376: pcrs_execute(): Consistently set *result to
NULL in case of errors. Should make use-after-free in the caller less
likely. CID 66391, CID 66376.
- 38_CVE-2015-1381: multiple segmentation faults and memory leaks in the
pcrs code.
- 39_CVE-2015-1382: invalid read.
-- Holger Levsen <holger@debian.org> Wed, 28 Jan 2015 19:44:30 +0100
privoxy (3.0.16-1) unstable; urgency=low
* New upstream version 3.0.16-stable.
* Adapt all patches to the new version.
* 30_localhost_fixup: removed, since this should no longer be necessary.
* 31_handle-as-empty-doc-returns-ok: now included upstream.
* 32_bind_fixup: Work around bind problems on startup (Closes: #534735).
-- Roland Rosenfeld <roland@debian.org> Tue, 18 May 2010 10:14:18 +0200
privoxy (3.0.15-3) unstable; urgency=low
* Add Build-Dependency on docbook because docbook-xml which may be
chained via docbook-dsssl as an alternative to docbook may not be
enough on a unclean build environment. This should now also build on
the mips buildd.
* 31_handle-as-empty-doc-returns-ok: Patch from SourceForge that work2
around Firefox bug to wait forever if proxy returns a failure status
code in response to the CONNECT (Closes: #561126).
-- Roland Rosenfeld <roland@debian.org> Fri, 25 Dec 2009 11:30:29 +0100
privoxy (3.0.15-2) unstable; urgency=low
* 30_localhost_fixup: Remove workaround for "localhost" listen-address,
which should solve all problems with privoxy not starting.
(Closes: #534735).
-- Roland Rosenfeld <roland@debian.org> Sun, 13 Dec 2009 10:09:11 +0100
privoxy (3.0.15-1) unstable; urgency=low
* New upstream version 3.0.15-beta.
* Adapted all patches to the new upstream version.
* Added debian/README.source (from dpatch package) to explain how dpatch
works.
* Upgrade to Standards-Version 3.8.3 (no changes).
* 29_typos: fix some common typos.
-- Roland Rosenfeld <roland@debian.org> Sat, 14 Nov 2009 14:22:31 +0100
privoxy (3.0.14-1) unstable; urgency=low
* New upstream version 3.0.14-beta.
* Adapted all patches to the new upstream version.
* --enable-no-gifs (uses PNG instead of GIF in replacement files).
-- Roland Rosenfeld <roland@debian.org> Sun, 26 Jul 2009 12:06:00 +0200
privoxy (3.0.13-1) unstable; urgency=low
* New upstream version 3.0.13-beta.
* Adapted all patches to the new upstream version.
* Removed 03_ipv6, because IPv6 is now supported upstream.
* Upgrade to Standards-Version 3.8.1 (no changes)
* Fix matcha-all.action typo in debian/postinst (Closes: #534270).
-- Roland Rosenfeld <roland@debian.org> Tue, 23 Jun 2009 15:09:08 +0200
privoxy (3.0.12-2) unstable; urgency=low
* 03_ipv6: Use s6_addr instead of in6_u, which is not portable.
-- Roland Rosenfeld <roland@debian.org> Wed, 25 Mar 2009 21:41:20 +0100
privoxy (3.0.12-1) unstable; urgency=low
* New upstream version 3.0.12-stable.
* Adapt all patches to new upstream version.
* Remove 30_quiet_start, because this is provided upstream now.
-- Roland Rosenfeld <roland@debian.org> Wed, 25 Mar 2009 13:27:30 +0100
privoxy (3.0.11-1) unstable; urgency=low
* New upstream version 3.0.11-stable.
* 19_manpage_fixup incorporated upstream now.
* 24_global_action is incorporated upstream in a similar way.
* postinst: try to make removal of standards.action and global.action
and new file match-all.action smooth to a user who does not want to
modify his config file.
* 30_quiet_start: Suppress INFO log messages on stderr at program startup.
* Stop redirecting stderr to errorlog file but print all config file
errors to stderr at startup. This closes the stderr filehandle since
upstream fixed the behavior in jcc.c 1.153.
This also solves the problem, that syntax errors in config file
weren't noticed, cause they are written to the console on start now
(Closes: #375174)
* Modify init.d script to be more lsb compliant.
Depends on lsb-base (>= 3.2-13)
* Allow disabling privoxy via RUN_DAEMON=no in /etc/default/privoxy.
(Closes: #482563).
* Update README.Debian to fit all changes.
-- Roland Rosenfeld <roland@debian.org> Sun, 22 Feb 2009 22:07:08 +0100
privoxy (3.0.10-2) unstable; urgency=low
* IPv6 patch added again: 03_ipv6: privoxy-3.0.10-ipv6-all-6.diff by
Petr Písař (Closes: #179461).
It seems that the old bugs #391600 and #393605, which appeared with
the previous version, are fixed now.
* 28_listen_localhost: Listen on localhost:8118 instead of 127.0.0.1:8118,
because this is independent from localhost IP (127.0.0.1 vs. 127.0.1.1)
and also supports IPv6 (Closes: #512888).
* 05_default_action: unblock qa.debian.org/popcon-graph.php (Closes: #479525)
* Create log dir in init script, if it does not exist (Closes: #491423).
-- Roland Rosenfeld <roland@debian.org> Sun, 15 Feb 2009 13:39:10 +0100
privoxy (3.0.10-1) UNRELEASED; urgency=low
* Not released to Debian but only on sourceforge.net.
* New upstream version 3.0.10-stable (Closes: #499324).
* Install privoxy-log-parser into /usr/bin.
* Add lintian-override for libtool warnings according pcre, because we
do not use this version of pcre but the one from libpcre3-dev.
-- Roland Rosenfeld <roland@debian.org> Sat, 20 Sep 2008 17:33:30 +0200
privoxy (3.0.9-1) unstable; urgency=low
* New upstream version 3.0.9-beta.
* Upgrade all patches to new version:
- 20_makefile_fixup included upstream.
* The new version doesn't support PDF documentation any more, so remove
it from the Debian package.
-> Stop Build-Depending on htmldoc.
* The new version doesn't support text/plain documentation any more, so
remove it from the Debian package.
* Upgrade to Standards-Version 3.8.0 (no changes)
* Move documentation from doc-base section Apps/Net to Network/Web Browsing.
* chown user:group instead of user.group in postinst to be more compatible.
* 05_defaut_action: unblock qa.debian.org/popcon.php (Closes: #479525).
-- Roland Rosenfeld <roland@debian.org> Mon, 07 Jul 2008 22:35:17 +0200
privoxy (3.0.8-1) unstable; urgency=low
* New upstream release 3.0.8-stable.
* Upgrade all patches to new version.
-- Roland Rosenfeld <roland@debian.org> Sun, 20 Jan 2008 22:19:02 +0100
privoxy (3.0.7-2) unstable; urgency=low
* Remove trailing space from debian/patches/00list to make lintian happy.
* postinst: On upgrade from 3.0.6 and below the config file format
changed: actionsfile now needs filename.action as parameter instead of
filename. Fix this config file change in postinst if necessary.
(Closes: #456274).
* Upgrade to Standards-Version 3.7.3 (no changes).
* 19_manpage_fixup: Replace "ö" by "\[:o]" in privoxy.8.
-- Roland Rosenfeld <roland@debian.org> Sat, 12 Jan 2008 16:02:14 +0100
privoxy (3.0.7-1) unstable; urgency=low
* New upstream version 3.0.7-beta.
* Adapt all patches to new version.
* Enable new zlib feature (Closes: #368448):
- build-depend on zlib1g-dev
- disable prevent-compression in 25_standard_medium.dpatch
* Remove 28_pcre_returncode.dpatch, which is now applied upstream.
* Remove 23_fix_faq_id.dpatch, which is now applied upstream.
* Fix Homepage header in control file.
* 05_defaut_action: disable filter{js-annoyances} for
http://www.memo.de/ (Closes: #441256).
* Update debian/watch file based on an idea of Raphael Geissert.
(Closes: #449643)
-- Roland Rosenfeld <roland@debian.org> Tue, 11 Dec 2007 19:34:35 +0100
privoxy (3.0.6-4) unstable; urgency=low
* Set "enable-remote-http-toggle 0" by default because otherwise
requests may be able to bypass filtering by setting "X-Filter: No"
headers using some strange javascript code.
* Disable default logging of every GET/POST/CONNECT request to protect
your privacy a bit more.
* 05_defaut_action: Stop blocking Andorra ccTLD (.ad) (Closes: #445461).
* Run make clean/distclean only if GNUmakefile exists in debian/rules.
-- Roland Rosenfeld <roland@debian.org> Sun, 21 Oct 2007 12:47:51 +0200
privoxy (3.0.6-3) unstable; urgency=low
* According to http://wiki.debian.org/AccountHandlingInMaintainerScripts
removing system users in postrm isn't a good idea. So the removal of
user privoxy in postrm was disabled and deluser/adduser of existing
user in postinst was also removed. This should avoid problems with
purging privoxy if passwd package isn't installed (Closes: #417015).
-- Roland Rosenfeld <roland@debian.org> Sat, 19 May 2007 21:22:42 +0200
privoxy (3.0.6-2) unstable; urgency=medium
* 28_pcre_returncode: Don't crash if pcre returns an error code that
pcrs didn't expect (Closes: #404284).
-- Roland Rosenfeld <roland@debian.org> Sat, 23 Dec 2006 21:47:12 +0100
privoxy (3.0.6-1) unstable; urgency=low
* New upstream release 3.0.6.
- remove 28_usermanual_slash.dpatch, which is already included
upstream now.
* README.Debian: mention that privoxy has to be used as HTTP proxy to
access http://p.p/ URLs (Closes: #398162).
-- Roland Rosenfeld <roland@debian.org> Mon, 20 Nov 2006 19:29:27 +0100
privoxy (3.0.5-beta-3) unstable; urgency=medium
* Disable the IPv6 patch, because this is seems to have too many bugs
for a release right now.
- This reopens #179461.
- This solves the problem, that "listen-address :8118" listens on
localhost only (Closes: #391600).
- This solves the problem, that regex pattern at front of hostname
is ignored (Closes: #393605).
* Use /usr/share/dpatch/dpatch.make in debian/rules instead of adding
the content by hand.
* Extended version of 26_edit_only_writable.dpatch by Fabian Keil. Now
shows a message, that the file is write protected. See SF#1564026.
-- Roland Rosenfeld <roland@debian.org> Sun, 22 Oct 2006 11:53:02 +0200
privoxy (3.0.5-beta-2) unstable; urgency=low
* 27_remove_nsl.dpatch: Remove unnecessary linking against libnsl.
* 28_usermanual_slash.dpatch: Redirect http://p.p/user-manual (without
trailing slash) to http://p.p/user-manual/ (with trailing slash),
otherwise the links will be broken (Closes: #244931).
-- Roland Rosenfeld <roland@debian.org> Sat, 7 Oct 2006 13:12:13 +0200
privoxy (3.0.5-beta-1) unstable; urgency=low
* New upstream version 3.0.5-beta.
* hide-referrer{foo} now allows everything as a forged referrer not
only http/https URLs and ignoring invalid URLs (Closes: #258193).
* Fixes the name of the filter from "popups" to "all-popups" in
user.action. (Closes: #385886).
* Block http://www.google-analytics.com/urchin.js because this is used
for cross site user tracking according to
http://www.google.com/analytics/ (Closes: #340913).
* Adapted all patches to this version.
* The following patches are incorporated upstream now, so they are no
longer needed: 01_local_usermanual.dpatch, 04_nomultiproxy.dpatch,
07_typos.dpatch, 08_log_pthread.dpatch, 09_no_identity.dpatch,
12_multiple-filters.dpatch, 13_memory.dpatch, 18_dns_retry.dpatch.
* 20_makefile_fixup.dpatch: Fix a syntax error in the GNUmakefile.in.
* 05_default_action.dpatch: main parts are incorporated upstream now.
* 05_default_action.dpatch: disable filter ie-eploits for amazon.de,
cause they use %01 and %02 as delimiters for multipage results
(Closes: #243245).
* 03_ipv6.dpatch: Add IPv6 support (Closes: #179461).
* 23_fix_faq_id.dpatch: Fix value of id attribute in <sect2> tag (no
underscore allowed) of faq.sgml.
* 24_global_action.dpatch: Move the global default for all pages (/)
from default.action to global.action to make updates with local
configurations easier.
* 25_standard_medium.dpatch: Change the global default from
standard.Cautious to standard.Medium, which is similar to the old
3.0.3 behavior and doesn't change too much (only
filter{js-annoyances}, filter{html-annoyances} and
filter{unsolicited-popups} are switched off now additionally because
they often cause trouble by using very much CPU time).
* 26_edit_only_writable.dpatch: Hide the edit button on
http://p.p/show-status if action file can not be written by the
privoxy user.
* default.action and standard.action are no longer owned by privoxy but
by root to show that these files are maintained upstream while users
should maintain their local changes in global.action and user.action.
* Add LSB compliance to init.d script (INIT INFO and status).
-- Roland Rosenfeld <roland@debian.org> Sat, 23 Sep 2006 23:37:03 +0200
privoxy (3.0.3-2-2) unstable; urgency=low
* Upgrade to Standards-Version 3.7.2 (no changes).
* 17_502_no_such_domain.dpatch: Changes the 404 HTTP status code of the
"No such Domain" template to 502 Bad Gateway, which seems to be more
correct according to http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
(Closes: #380389).
* Disable filter{js-annoyances} and filter{unsolicited-popups} for
.cnrs.fr and blogs.msdn.com, because these sites consume very much CPU
time otherwise (Closes: #377843).
* 18_dns_retry.dpatch by Fabian Keil <fk@fabiankeil.de>: 10 retries
before giving up DNS lookup. This hopefully Closes: #335660.
* 19_manpage_fixup.dpatch:
- Convert Latin-1 char á to groff equivalent in man page.
- Quote minus signs to differentiate them from hyphens.
* Do not filter{banners-by-size} on .w3.org pages, because these often
contain validator icons (Closes: #319025).
-- Roland Rosenfeld <roland@debian.org> Sat, 5 Aug 2006 15:15:17 +0200
privoxy (3.0.3-2-1) unstable; urgency=low
* New upstream version 3.0.3-2.
* Add debian/watch file.
* Remove parts of 13_memory.dpatch, which seems to free too much
memory (Closes: #353110, #354611).
-- Roland Rosenfeld <roland@debian.org> Mon, 27 Feb 2006 23:28:52 +0100
privoxy (3.0.3-6) unstable; urgency=low
* Now hopefully really redirect all output of logrotate to /dev/null
(Closes: #314868).
* Migrate all patches to dpatch mechanism.
* Upgrade to debhelper 5.
* Call htmldoc with parameter --no-embedfonts to keep PDF files small.
* Build-Depends on htmldoc (>= 1.8.25-1), because older versions caused
broken PDF documentation on 64bit systems.
* Fix some typos in user-manual.
* Add multiple filter file support (from CVS) (Closes: #201177).
* Fix some memory leaks, mallocs, double frees (from CVS).
* Remove CVS $-tags from config files to make it easier for users to
keep the configuration in a VCS (Closes: #350799).
* Remove trailing spaces from all config files now.
* Build man page (and HTML version of it) at build time.
-- Roland Rosenfeld <roland@debian.org> Sat, 11 Feb 2006 21:27:14 +0100
privoxy (3.0.3-5) unstable; urgency=low
* Redirect output of restart script in logrotate to /dev/null
(Closes: #314868).
* Upgrade to Standards-Version 3.6.2:
- Recommends: doc-base
* Build-Depends on autotools-dev and copy config.guess and config.sub
from there on every build (Closes: #332767).
* After dechunking remove the "chunked"-header instead of replacing it
by an d"identity" header. Thanks to Michael Shields for reporting this
(Closes: #318683).
* Update address of FSF in copyright file.
-- Roland Rosenfeld <roland@debian.org> Sun, 9 Oct 2005 13:44:55 +0200
privoxy (3.0.3-4) unstable; urgency=low
* Stop converting entities to 8bit chars in the documentation
(Closes: #203697).
* Fix typos ('persistant' and 'Januar') in man page and man page sources
(Closes: #302145).
* Restart privoxy in logrotate script instead of sendig a kill -HUP, to
triggering reopen of log files (Closes: #285059).
* Apply patch by Jindrich Makovicka to fix race conditions in log
writing functions (Closes: #299662).
* Stop hiding referrer for www.petitiononline.com/mod_perl/signed.cgi,
because this site does not work otherwise (Closes: #250407).
-- Roland Rosenfeld <roland@debian.org> Sun, 15 May 2005 15:28:56 +0200
privoxy (3.0.3-3) unstable; urgency=low
* Now really remove multiproxy.org from all documentation, not only from
the config file (Closes: #198953).
-- Roland Rosenfeld <roland@debian.org> Sun, 15 Feb 2004 23:11:29 +0100
privoxy (3.0.3-2) unstable; urgency=low
* no banners-by-side on "/valid-" images, because that's usually from
validator.w3.org (Closes: #221009).
* Upgrade to Standards-Version 3.6.1 (no changes).
* Add Homepage URL to the package description.
* If the privoxy user is already existing as a non-system user in
postinst, this no longer fails, but deletes the non-system user before
adding it again as a system user (Closes: #232724).
* Use deluser instead of userdel in postrm.
* Redirect stderr of privoxy to /var/log/privoxy/errfile to avoid
problems with kept open file descriptors (Closes: #200712).
* Remove comment from config file, which points to list of open proxies
at multiproxy.org (Closes: #198953).
-- Roland Rosenfeld <roland@debian.org> Sun, 15 Feb 2004 15:13:27 +0100
privoxy (3.0.3-1) unstable; urgency=low
* New upstream version 3.0.3.
- This introduces workarounds for server (PHP <4.2.3) bugs including
the "blank page" problem (Closes: #215231).
- Avoid the conversion of "open" in scripts to "PrivoxyWindowOpen"
(Closes: #197995).
- "advocancy" is no longer blocked (Closes: #202042).
- Fixed yet another two memory leaks (Closes: #215911).
* Stop backup of pdf directory, because it is no longer contained in the
upstream package.
* Create doc/pdf, which is missing upstream.
* disable filter{unsolicited-popups} for www.perl.com/language/newdocs/pod/
to avoid problems with "PrivoxyWindowOpen" in Perl manuals
(Closes: #195311).
* Apply patch make privoxy compilable on woody where htmldoc --version
doesn't exist (Closes: #216524).
-- Roland Rosenfeld <roland@debian.org> Sat, 31 Jan 2004 11:25:53 +0100
privoxy (3.0.2-5) unstable; urgency=low
* Merge corrections from upstream default.action 1.7.
- demoronizer filter (which caused trouble on non latin1 charsets) is
now switched off by default (Closes: #202234).
-- Roland Rosenfeld <roland@debian.org> Tue, 9 Sep 2003 21:31:51 +0200
privoxy (3.0.2-4) unstable; urgency=low
* Add a versioned build dependency on htmldoc (>= 1.8.20), because there
seem to be some options mission in the old 1.8.17 (Closes: #192457).
* Merge rotation of logfile and jarfile in logrotate script.
* Test whether /var/run/privoxy.pid is existing and don't bother when no
privoxy is running in logrotate script (Closes: #191838).
* Remove /var/run/privoxy.pid on privoxy stop in init.d script.
* Mention apt-get instead of dpkg in user-manual (Closes: #189239).
* Remove trailing whitespace from text versions of user-manual,
developer-manual and faq (Closes: #192566).
-- Roland Rosenfeld <roland@debian.org> Fri, 9 May 2003 08:21:30 +0200
privoxy (3.0.2-3) unstable; urgency=low
* Stop filtering favicon.ico, which may cause trouble (Closes: #188947).
* Send SIGHUP to privoxy instead of touching /etc/provoxy/config in
logrotate script to tell privoxy that the logfiles were rotated
(Closes: #189240).
* Remove trailing spaces from config file (Closes: #189240).
* Install man page as privoxy(8) instead of privoxy(1), because this is
a system binary.
* Build HTML, text, and PDF versions of the documentation from source.
* Fix setting of dodk in configure.in.
* Add option "--linkcolor #0000ff" to htmldoc call in ldp_print to be
independent of ~/.htmldocrc color setting.
* Mention PDF and text version of the documentation in doc-base files.
* Install PDF version of the documentation, too.
* Install HTML version of the man page, too.
-- Roland Rosenfeld <roland@debian.org> Mon, 21 Apr 2003 11:11:31 +0200
privoxy (3.0.2-2) unstable; urgency=low
* Don't apply any filters to {bugs|lists}.debian.org (Closes: #186537).
* Prepend "http://config.privoxy.org" before "/user-manual/" to always
get a correct URL for the local user-manual (also on 404 error pages).
(Closes SF-719724).
-- Roland Rosenfeld <roland@debian.org> Sun, 13 Apr 2003 12:49:15 +0200
privoxy (3.0.2-1) unstable; urgency=low
* New upstream version 3.0.2.
* Update Standards-Version to 3.5.9 (no changes).
-- Roland Rosenfeld <roland@debian.org> Wed, 26 Mar 2003 19:45:07 +0100
privoxy (3.0.0-6) unstable; urgency=low
* Fixed a bug in local user-manual patch, which failed when accessing
http://config.privoxy.org/user-manual/ (without a file name).
-- Roland Rosenfeld <roland@debian.org> Sun, 2 Mar 2003 13:40:48 +0100
privoxy (3.0.0-5) unstable; urgency=low
* Stop build-depending on special versions of libc6-dev and gcc.
Hopefully all auto-builders run new versions which shouldn't cause
trouble (Closes: #182267)
-- Roland Rosenfeld <roland@debian.org> Mon, 24 Feb 2003 19:07:11 +0100
privoxy (3.0.0-4) unstable; urgency=low
* Set "enable-edit-actions 0" and "enable-remote-toggle 0" in config
file, instead of simply commenting out these two lines. Mention this
configuration change in README.Debian (Closes: #172965, #172966).
* Add new "cgi" user-manual, which sends the user manual to the client
and activate it in config file (Closes: #148128).
* Build-Depend on libc6-dev (>> 2.2.5) to avoid problems with pthread
(Closes: #158306, #162693).
* Don't search for user bsmtp in /etc/passwd before using adduser.
adduser handles already existing users correct.
* Remove /etc/provoxy on purge (Closes: #164039).
* Upgrade to Standards-Version 3.5.8:
- remove support for DEB_BUILD_OPTION "debug"
- add support for DEB_BUILD_OPTION "noopt"
* Upgrade to debhelper >=4 and use debian/compat instead of DH_COMPAT.
* Upgrade config.guess and config.sub (from autotools-dev 20030110.1).
* Remove no-pthread workaround for hppa and build-depend on gcc >=3.2.2,
which supports -pthread on hppa, too.
-- Roland Rosenfeld <roland@debian.org> Sun, 23 Feb 2003 13:34:11 +0100
privoxy (3.0.0-3) unstable; urgency=low
* Add aliases "wafer" and "vanilla-wafer" for "send-wafer" and
"send-vanilla-wafer" to actionlist to provide backward compatibility
to 2.9.14 (Closes: #154647).
-- Roland Rosenfeld <roland@debian.org> Sun, 8 Sep 2002 11:43:38 +0200
privoxy (3.0.0-2) unstable; urgency=low
* Recompile with libc6 from testing (instead of unstable).
-- Roland Rosenfeld <roland@debian.org> Fri, 6 Sep 2002 17:32:35 +0200
privoxy (3.0.0-1) unstable; urgency=low
* New upstream version (Closes: #158613).
* Remove version number from config file, to avoid changing it on every
new upstream version. Sorry, this time you will still be bothered...
-- Roland Rosenfeld <roland@debian.org> Sun, 1 Sep 2002 18:58:07 +0200
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.
* Exclude CVS files from dh_installdocs (when compiling from CVS).
* Add user.action and standard.action to /etc/privoxy.
* Install images for html version of documentation.
* Do no longer build html and txt versions of documentation using
docbook, but use the converted versions which come with the upstream
package.
* default.action fixed upstream: "downloads" no longer blocked
(Closes: #148290).
* default.filter fixed upstream: Made WeBugs job ungreedy (Closes: #149450).
* Remove the "beta" from the version number (the final release will be
named 3.0, so it's superfluous).
-- Roland Rosenfeld <roland@debian.org> Sat, 27 Jul 2002 18:55:11 +0200
privoxy (2.9.14-beta-4) unstable; urgency=low
* Damn, why did I write "i386-linux" into the rules file, when I try to
write a work around for hppa? Fixed now (Closes: #148227).
-- Roland Rosenfeld <roland@debian.org> Sun, 26 May 2002 22:33:26 +0200
privoxy (2.9.14-beta-3) unstable; urgency=low
* Fix typo ('[' instead of '{') in default.action (Closes: #148122).
* Disable edit-actions and remote-toggle in config file by default
(Closes: #148125).
* Use --disable-pthread on hppa, to avoid problem with hppa gcc not
supporting -pthread option (Closes: #148117).
* Install p_doc.css in documentation directory.
-- Roland Rosenfeld <roland@debian.org> Sun, 26 May 2002 01:40:18 +0200
privoxy (2.9.14-beta-2) unstable; urgency=low
* Fix debian/rules clean to really clean.
* Change owner of /etc/privoxy/{*.action|trust} to privoxy in postinst,
to allow modification of these files web interface (Closes: SF-552144).
-- Roland Rosenfeld <roland@debian.org> Thu, 23 May 2002 18:38:27 +0200
privoxy (2.9.14-beta-1) unstable; urgency=low
* New upstream version.
-- Roland Rosenfeld <roland@debian.org> Sat, 13 Apr 2002 18:05:26 +0200
privoxy (2.9.13-beta-2) unstable; urgency=low
* Create HTML and ASCII versions of the documentation using docbook now.
-- Roland Rosenfeld <roland@debian.org> Sun, 31 Mar 2002 23:53:28 +0200
privoxy (2.9.13-beta-1) unstable; urgency=low
* Initial Release.
-- Roland Rosenfeld <roland@debian.org> Fri, 29 Mar 2002 11:52:03 +0100
|