summaryrefslogtreecommitdiff
path: root/net/slirp
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1998-11-11 05:37:39 +0000
committerSatoshi Asami <asami@FreeBSD.org>1998-11-11 05:37:39 +0000
commitdbc8aa6cc1cb1abadce30cfe133c7a5c2ed2f34b (patch)
treedeebef625a152490a0bbcb7e5602d05a59b1c010 /net/slirp
parentMake bsd.port.mk includable in two phases. bsd.port.pre.mk defines only (diff)
Use bsd.port.{pre,post}.mk. Either use them to avoid having to define
something already there (PORTOBJFORMAT, OSVERSION) or move stuff from after .include <bsd.port.mk> to before. (This is not by any means the complete list but just the ones I've noticed recently.)
Notes
Notes: svn path=/head/; revision=14465
Diffstat (limited to 'net/slirp')
-rw-r--r--net/slirp/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/slirp/Makefile b/net/slirp/Makefile
index 423aa760a27f..3f0d6d2010f2 100644
--- a/net/slirp/Makefile
+++ b/net/slirp/Makefile
@@ -3,7 +3,7 @@
# Date created: 25 Aug 1995
# Whom: Alain Kalker <A.C.P.M.Kalker@student.utwente.nl>
#
-# $Id: Makefile,v 1.8 1998/02/10 17:23:47 fenner Exp $
+# $Id: Makefile,v 1.9 1998/10/14 01:18:49 jseger Exp $
#
DISTNAME= slirp-1.0c
@@ -12,7 +12,8 @@ MASTER_SITES= ftp://blitzen.canberra.edu.au/pub/slirp/
MAINTAINER= A.C.P.M.Kalker@student.utwente.nl
-OSVERSION!= sysctl -n kern.osreldate
+.include <bsd.port.pre.mk>
+
.if ${OSVERSION} >= 300000
BROKEN= tcp_subr.c
.endif
@@ -21,4 +22,4 @@ WRKSRC= ${WRKDIR}/slirp-1.0c/src
HAS_CONFIGURE= yes
MAN1= slirp.1
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>