summaryrefslogtreecommitdiff
path: root/www/privoxy
diff options
context:
space:
mode:
authordrochner <drochner>2008-06-13 13:45:46 +0000
committerdrochner <drochner>2008-06-13 13:45:46 +0000
commitee3c7b61eb23ef7b3d7e5337a844b9707f8cab87 (patch)
tree07a0159e980a41346aa7c26afa6000aa79680a26 /www/privoxy
parent4847decf07063d18f4fb2b07202d90ac9b3cf978 (diff)
downloadpkgsrc-ee3c7b61eb23ef7b3d7e5337a844b9707f8cab87.tar.gz
remove an "extern inline" which is gcc specific and doesn't work on IRIX,
reported by Stuart Shelton in PR pkg/38252, I also think that the PRIVOXY_GROUP thing was a false report caused by some pkgsrc framework glitch -- the value passed to "configure" is correct for me (check "config.status").
Diffstat (limited to 'www/privoxy')
-rw-r--r--www/privoxy/distinfo4
-rw-r--r--www/privoxy/patches/patch-ad13
-rw-r--r--www/privoxy/patches/patch-ae13
3 files changed, 29 insertions, 1 deletions
diff --git a/www/privoxy/distinfo b/www/privoxy/distinfo
index cf19790b1a7..4aedb25c242 100644
--- a/www/privoxy/distinfo
+++ b/www/privoxy/distinfo
@@ -1,7 +1,9 @@
-$NetBSD: distinfo,v 1.7 2008/03/12 21:35:03 drochner Exp $
+$NetBSD: distinfo,v 1.8 2008/06/13 13:45:46 drochner Exp $
SHA1 (privoxy-3.0.8-stable-src.tar.gz) = 7fe2b7afde4066ef1f170f5f11850cf9da428a42
RMD160 (privoxy-3.0.8-stable-src.tar.gz) = 604dd61a22dc74d06d4adaa4b3c87e4d5da5149b
Size (privoxy-3.0.8-stable-src.tar.gz) = 2007961 bytes
SHA1 (patch-aa) = c263d2a4b9522a33613f82ab2bc18d5c2b554b21
SHA1 (patch-ac) = e39ffe694462b952c5ad66ac577a0acbee0a1d9f
+SHA1 (patch-ad) = d5d6fe935ff98a45ebbd209a5c7126cb5e42ae1a
+SHA1 (patch-ae) = 5cd064cd6b35196d32272bbbdc181a1e48d9be8f
diff --git a/www/privoxy/patches/patch-ad b/www/privoxy/patches/patch-ad
new file mode 100644
index 00000000000..024bab4956e
--- /dev/null
+++ b/www/privoxy/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2008/06/13 13:45:46 drochner Exp $
+
+--- filters.h.orig 2007-10-19 18:53:28.000000000 +0200
++++ filters.h
+@@ -325,7 +325,7 @@ extern char *get_last_url(char *subject,
+
+ extern pcrs_job *compile_dynamic_pcrs_job_list(const struct client_state *csp, const struct re_filterfile_spec *b);
+
+-extern inline int content_filters_enabled(const struct client_state *csp);
++int content_filters_enabled(const struct client_state *csp);
+
+ /*
+ * Handling Max-Forwards:
diff --git a/www/privoxy/patches/patch-ae b/www/privoxy/patches/patch-ae
new file mode 100644
index 00000000000..2e55a9412a3
--- /dev/null
+++ b/www/privoxy/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1 2008/06/13 13:45:46 drochner Exp $
+
+--- filters.c.orig 2008-01-04 18:43:45.000000000 +0100
++++ filters.c
+@@ -2674,7 +2674,7 @@ struct http_response *direct_response(st
+ * Returns : TRUE for yes, FALSE otherwise
+ *
+ *********************************************************************/
+-inline int content_filters_enabled(const struct client_state *csp)
++int content_filters_enabled(const struct client_state *csp)
+ {
+ return (((csp->rlist != NULL) &&
+ (!list_is_empty(csp->action->multi[ACTION_MULTI_FILTER]))) ||