summaryrefslogtreecommitdiff
path: root/www/ffproxy/files
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2003-07-21 14:28:03 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2003-07-21 14:28:03 +0000
commit568128bcfeb180b70fd057818d29f1d0abb24a71 (patch)
tree5e27e2d8e2eabb44fcf18a7ccba555f9c1127925 /www/ffproxy/files
parentUpdate to 7.07 (diff)
ffproxy is a filtering HTTP proxy server. It is able
to filter by host, URL, and header. Custom header entries can be filtered and added. It can even drop its privileges and optionally chroot() to some directory. Logging to syslog() is supported, as is using another auxiliary proxy server. Contacting IPv6 servers is supported and allows transparent IPv6 over IPv4 browsing. PR: 54669 Approved by: fjoe (mentor)
Notes
Notes: svn path=/head/; revision=85302
Diffstat (limited to 'www/ffproxy/files')
-rw-r--r--www/ffproxy/files/patch-Makefile13
-rw-r--r--www/ffproxy/files/patch-dbs.h7
2 files changed, 20 insertions, 0 deletions
diff --git a/www/ffproxy/files/patch-Makefile b/www/ffproxy/files/patch-Makefile
new file mode 100644
index 000000000000..d191fa847c3a
--- /dev/null
+++ b/www/ffproxy/files/patch-Makefile
@@ -0,0 +1,13 @@
+--- Makefile.orig Sun Jul 20 19:17:45 2003
++++ Makefile Sun Jul 20 19:19:10 2003
+@@ -12,8 +12,8 @@
+
+ MANPAGES = ffproxy.8
+
+-PREFIX = /usr/local
+-CC = gcc
++PREFIX = ${PREFIX}
++CC ?= gcc
+
+ all: proxy
+
diff --git a/www/ffproxy/files/patch-dbs.h b/www/ffproxy/files/patch-dbs.h
new file mode 100644
index 000000000000..d293090a53ff
--- /dev/null
+++ b/www/ffproxy/files/patch-dbs.h
@@ -0,0 +1,7 @@
+--- dbs.h.orig Sun Jul 20 19:16:32 2003
++++ dbs.h Sun Jul 20 19:16:48 2003
+@@ -1,3 +1,4 @@
++#include <unistd.h>
+ #include <regex.h>
+
+ extern regex_t *a_ip[];