diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2011-11-07 04:24:55 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2011-11-07 04:24:55 +0000 |
commit | 3cabe21a2dfb3b2b13910299e3c4c00d7d724d99 (patch) | |
tree | fc7606d0883621b7ad825f441375954cd70cf9a8 /emulators | |
parent | 3ba9992d2de718ebdcb0e0e484223c24c2614f4b (diff) | |
download | ports-3cabe21a2dfb3b2b13910299e3c4c00d7d724d99.tar.gz ports-3cabe21a2dfb3b2b13910299e3c4c00d7d724d99.zip |
Notes
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/dynamips-devel/Makefile | 2 | ||||
-rw-r--r-- | emulators/dynamips/Makefile | 2 | ||||
-rw-r--r-- | emulators/open-vm-tools/Makefile | 4 | ||||
-rw-r--r-- | emulators/parallels-tools/Makefile | 8 |
4 files changed, 3 insertions, 13 deletions
diff --git a/emulators/dynamips-devel/Makefile b/emulators/dynamips-devel/Makefile index fa8d8713d02d..d37d0c4e4b1b 100644 --- a/emulators/dynamips-devel/Makefile +++ b/emulators/dynamips-devel/Makefile @@ -51,7 +51,7 @@ DYNAMIPS_ARCH= "nojit" .endif # It required libpcap version 0.9.4 or is higher. -.if ${OSVERSION} < 602100 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700021) +.if ${OSVERSION} < 700021 BUILD_DEPENDS+= ${LOCALBASE}/lib/libpcap.a:${PORTSDIR}/net/libpcap MAKE_ENV+= PCAP_LIB=${LOCALBASE}/lib/libpcap.a #.warning Do not overlook, make libpcap with LIBPCAP_OVERWRITE_BASE parameter, for use with shared library. diff --git a/emulators/dynamips/Makefile b/emulators/dynamips/Makefile index 518f12cc76a5..2df710e9912f 100644 --- a/emulators/dynamips/Makefile +++ b/emulators/dynamips/Makefile @@ -42,7 +42,7 @@ DYNAMIPS_ARCH= "amd64" DYNAMIPS_ARCH= "nojit" .endif -.if ${OSVERSION} < 602100 || ${OSVERSION} < 700021 +.if ${OSVERSION} < 700021 BUILD_DEPENDS+= libpcap>=0.9.4:${PORTSDIR}/net/libpcap .endif diff --git a/emulators/open-vm-tools/Makefile b/emulators/open-vm-tools/Makefile index e4ba096d5108..87e546c88770 100644 --- a/emulators/open-vm-tools/Makefile +++ b/emulators/open-vm-tools/Makefile @@ -77,10 +77,6 @@ USE_RC_SUBR= vmware-guestd.sh vmware-kmod.sh .include <bsd.port.pre.mk> -.if ${OSVERSION} < 700000 -BROKEN= does not compile on 6.X -.endif - .if ${ARCH} == "sparc64" IGNORE= not yet ported to sparc64 .endif diff --git a/emulators/parallels-tools/Makefile b/emulators/parallels-tools/Makefile index 3840ca49da30..034a37f6ce8f 100644 --- a/emulators/parallels-tools/Makefile +++ b/emulators/parallels-tools/Makefile @@ -22,10 +22,4 @@ KMODDIR?= /boot/modules PLIST_SUB+= KMODDIR=${KMODDIR} MAKE_ENV+= KMODDIR=${KMODDIR} -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 700000 -IGNORE= is only supported on FreeBSD 7.x or later -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |