diff options
author | John Marino <marino@FreeBSD.org> | 2014-11-04 21:11:12 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-11-04 21:11:12 +0000 |
commit | 8829d0f92267449ff66706a9c239bfa84769cb3b (patch) | |
tree | 4d6c2669f221c12892ed95097adeafeb485ec51d /net/miniupnpd/files | |
parent | d0a8ed3d7497caaf3e082a723f2ca292a56a03f6 (diff) | |
download | ports-8829d0f92267449ff66706a9c239bfa84769cb3b.tar.gz ports-8829d0f92267449ff66706a9c239bfa84769cb3b.zip |
net/miniupnpd: Upgrade version 1.8.20140523 => 1.8.20141022
PR: 193577
Submitted by: razzfazz (gmail)
Approved by: maintainer (Tor Halvard Furulund)
Notes
Notes:
svn path=/head/; revision=372172
Diffstat (limited to 'net/miniupnpd/files')
-rw-r--r-- | net/miniupnpd/files/patch-Makefile | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/net/miniupnpd/files/patch-Makefile b/net/miniupnpd/files/patch-Makefile deleted file mode 100644 index 7ee99c33d946..000000000000 --- a/net/miniupnpd/files/patch-Makefile +++ /dev/null @@ -1,51 +0,0 @@ ---- Makefile.orig 2014-04-20 09:47:29.000000000 -0700 -+++ Makefile 2014-06-20 22:53:14.863342337 -0700 -@@ -15,7 +15,7 @@ - # $ CONFIG_OPTIONS="--ipv6 --igd2" make - # - --CFLAGS ?= -pipe -Os -+CFLAGS ?= -pipe - #CFLAGS = -pipe -O -g -DDEBUG - #CFLAGS += -ansi - CFLAGS += -Wall -@@ -45,25 +45,36 @@ - .endif - - # better way to find if we are using ipf or pf --.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - .if $(OSNAME) == "FreeBSD" -+.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - FWNAME != . /etc/rc.subr; . /etc/rc.conf; \ -- if checkyesno ipfilter_enable; then \ -+ if checkyesno firewall_enable; then \ -+ echo "ipfw"; elif checkyesno ipfilter_enable; then \ - echo "ipf"; elif checkyesno pf_enable; then \ -- echo "pf"; else echo "ipfw"; fi -+ echo "pf"; else echo "pf"; fi -+.else -+FWNAME = pf -+.endif - .endif - - .if $(OSNAME) == "NetBSD" -+.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - FWNAME != . /etc/rc.subr; . /etc/rc.conf; \ - if checkyesno ipfilter; then \ - echo "ipf"; else echo "pf"; fi -+.else -+FWNAME = pf -+.endif - .endif - - .if $(OSNAME) == "DragonFly" -+.if exists(/etc/rc.subr) && exists(/etc/rc.conf) - FWNAME != . /etc/rc.subr; . /etc/rc.conf; \ - if checkyesno ipfilter; then \ - echo "ipf"; elif checkyesno pf_enable; then \ - echo "pf"; else echo "ipfw"; fi -+.else -+FWNAME = ipfw - .endif - .endif - |