diff options
author | miwi <miwi@FreeBSD.org> | 2011-11-07 04:24:55 +0000 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-11-07 04:24:55 +0000 |
commit | 0be8fb7a769037ffce046ff5fb03e73a4b506e09 (patch) | |
tree | 3694b8bc49e4a0588d61a3443ee56ea0f3b89d3f /emulators | |
parent | e49c9c261a7473cfcb91586fa5bf34a1bf3e2337 (diff) | |
download | FreeBSD-ports-0be8fb7a769037ffce046ff5fb03e73a4b506e09.zip FreeBSD-ports-0be8fb7a769037ffce046ff5fb03e73a4b506e09.tar.gz |
- Get rid FreeBSD 6 support
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 fa8d871..d37d0c4 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 518f12c..2df710e 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 e4ba096..87e546c 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 3840ca4..034a37f 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> |