summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2010-01-19 21:46:31 +0000
committerEd Schouten <ed@FreeBSD.org>2010-01-19 21:46:31 +0000
commitb80baec8b1fa892cc3743305fefd2d198b4a03cb (patch)
treee17c5dcb4132c6a5cba43ad4449e0efa8f99f03e
parentUpdate to 9.3. This release includes fixes for critical vulnerabilities which (diff)
Disable pppd23 on OSVERSION 800045 or higher.
This pppd depends on the PPP line discipline, which is gone as of 8.0. Approved by: Valentin Nechayev <netch netch kiev ua> (maintainer)
Notes
Notes: svn path=/head/; revision=248168
-rw-r--r--net/pppd23/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/net/pppd23/Makefile b/net/pppd23/Makefile
index 3a264e724fd1..d3c2453930be 100644
--- a/net/pppd23/Makefile
+++ b/net/pppd23/Makefile
@@ -20,4 +20,10 @@ GNU_CONFIGURE= yes
MAN8= pppd.8 pppstats.8 chat.8
MANCOMPRESSED= yes
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 800045
+IGNORE= depends on PPPDISC, which is no longer available
+.endif
+
+.include <bsd.port.post.mk>