diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-05 19:44:02 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-05 19:44:02 +0000 |
commit | d095d4a96566a3ab095ab2e30430ce93a154f1a7 (patch) | |
tree | ca5cd97e4ad40da4b6e4a6c197453610fd6c69b1 /emulators/vmware-guestd6 | |
parent | c0a7a1f97264b914fa27603f8433b87b38b15f14 (diff) |
- Remove conditional checks for FreeBSD 5.x and older
Notes
Notes:
svn path=/head/; revision=225293
Diffstat (limited to 'emulators/vmware-guestd6')
-rw-r--r-- | emulators/vmware-guestd6/Makefile | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/emulators/vmware-guestd6/Makefile b/emulators/vmware-guestd6/Makefile index cda480661623..41dd2738ffbe 100644 --- a/emulators/vmware-guestd6/Makefile +++ b/emulators/vmware-guestd6/Makefile @@ -73,13 +73,7 @@ BITS?= 32 .else # ${ARCH} == amd64 BITS?= 64 .endif -.if (${OSVERSION} < 530000) && (${ARCH} == i386) -OSSFX?= -50 -.elif ${OSVERSION} < 600000 -OSSFX?= -.else # ${OSVERSION} >= 600000 OSSFX?= -6 -.endif .if defined(VMWARE_X_PORTS) @@ -104,20 +98,7 @@ PLIST_SUB+= VMWARE_VMMEMCTL="@comment " .endif .if defined(WITH_VMWARE_VMXNET) -.if (${OSVERSION} < 600000) -PLIST_SUB+= VMWARE_VMXNET="" -.if ${BITS} == 32 -.if ${OSVERSION} < 530000 -VMWARE_VMXNET_PATH= 5.0-i386/vmxnet.ko -.else -VMWARE_VMXNET_PATH= 5.3-i386/vmxnet.ko -.endif -.else -# VMware doesn't provide 5.3-amd64/vmxnet.ko -.undef WITH_VMWARE_VMXNET -PLIST_SUB+= VMWARE_VMXNET="@comment " -.endif -.elif (${OSVERSION} >= 600000) && (${OSVERSION} < 700000) +.if ${OSVERSION} < 700000 PLIST_SUB+= VMWARE_VMXNET="" .if ${BITS} == 32 VMWARE_VMXNET_PATH= 6.0-i386/vmxnet.ko |