summaryrefslogtreecommitdiff
path: root/www/oops
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-05-20 17:53:56 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-05-20 17:53:56 +0000
commitdbcd1fc8e981bc2cb4dffbce30461f4ebded0822 (patch)
tree5f8fbd3aec18b73aed69592c12f7f0f9c4649c96 /www/oops
parentHook up xfaces to the build after it was re-added 3 weeks ago (diff)
- Fix: after recent ipfilter update IPL_NAT symbol has disappeared
PR: ports/80934 Submitted by: marck (maintainer)
Notes
Notes: svn path=/head/; revision=135724
Diffstat (limited to 'www/oops')
-rw-r--r--www/oops/Makefile2
-rw-r--r--www/oops/files/patch-src_modules_transparent.c14
2 files changed, 15 insertions, 1 deletions
diff --git a/www/oops/Makefile b/www/oops/Makefile
index 2a8e89c45e97..dd873155f643 100644
--- a/www/oops/Makefile
+++ b/www/oops/Makefile
@@ -7,7 +7,7 @@
PORTNAME= oops
PORTVERSION= ${OOPSVERSION}
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://oops-cache.org/
DISTNAME= ${PORTNAME}-${OOPSVERSION}
diff --git a/www/oops/files/patch-src_modules_transparent.c b/www/oops/files/patch-src_modules_transparent.c
new file mode 100644
index 000000000000..658f7ff23385
--- /dev/null
+++ b/www/oops/files/patch-src_modules_transparent.c
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- src/modules/transparent.c.orig
++++ src/modules/transparent.c
+@@ -214,7 +214,7 @@
+ natLookup.nl_outip = rq->client_sa.sin_addr;
+ natLookup.nl_flags = IPN_TCP;
+ if (natfd < 0) {
+- natfd = open(IPL_NAT, O_RDONLY, 0);
++ natfd = open(IPNAT_NAME, O_RDONLY, 0);
+ if (natfd < 0) {
+ my_xlog(OOPS_LOG_HTTP|OOPS_LOG_DBG|OOPS_LOG_SEVERE, "transparent/redir(): NAT open failed: %m\n");
+ goto notdone;