summaryrefslogtreecommitdiff
path: root/www/junkbuster/files
diff options
context:
space:
mode:
authorMatthew Hunt <mph@FreeBSD.org>1998-05-03 20:51:39 +0000
committerMatthew Hunt <mph@FreeBSD.org>1998-05-03 20:51:39 +0000
commite7933a995a029c3d6ae881c8f7725571278e2573 (patch)
tree612db4176e993bfe6e971d1add7019bb76c61b2f /www/junkbuster/files
parentUpdate to patchlevel 13. (diff)
Import of ijb, the Internet Junkbuster. It's an HTTP proxy that
strips advertisements and so on. PR: 6488 Submitted by: Ian Struble <ian@broken.net>
Notes
Notes: svn path=/head/; revision=10824
Diffstat (limited to 'www/junkbuster/files')
-rw-r--r--www/junkbuster/files/patch-aa25
1 files changed, 25 insertions, 0 deletions
diff --git a/www/junkbuster/files/patch-aa b/www/junkbuster/files/patch-aa
new file mode 100644
index 000000000000..4060a1e923fd
--- /dev/null
+++ b/www/junkbuster/files/patch-aa
@@ -0,0 +1,25 @@
+--- Makefile.orig Fri Feb 20 12:40:32 1998
++++ Makefile Sun May 3 16:46:35 1998
+@@ -8,7 +8,7 @@
+ PROG = junkbuster
+ O = o
+ RM = rm -f
+-MORE_CFLAGS = -g
++MORE_CFLAGS =
+
+ # use this for Solaris 2.x
+ #LDFLAGS = -lnsl -lsocket
+@@ -43,10 +43,12 @@
+ #O = obj
+ #RM = del
+
+-CFLAGS = $(DEFAULT_CFLAGS) $(MORE_CFLAGS)
++CFLAGS += $(DEFAULT_CFLAGS) $(MORE_CFLAGS)
+
+ OBJS = jcc.$(O) parsers.$(O) filters.$(O) loaders.$(O) bind.$(O) conn.$(O) \
+ encode.$(O) ssplit.$(O) socks4.$(O) acl.$(O) gnu_regex.$(O) win32.$(O)
++
++all: $(PROG)
+
+ $(PROG): $(OBJS)
+ $(CC) $(CFLAGS) -o $(PROG) $(OBJS) $(LDFLAGS)