diff options
author | Max Khon <fjoe@FreeBSD.org> | 2003-10-06 10:07:36 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2003-10-06 10:07:36 +0000 |
commit | 3dc6b255256e2c6283fa14fdbe7e6925a8a79810 (patch) | |
tree | 4b078d9b0176f3de5ac5fdfa349c3d82d27084ff /emulators/vmware2 | |
parent | 0703da45816c16e6f060f8ec311722316f03c5ac (diff) |
Fix build on post-PAE RELENG_4 (maintainer timeout).
Notes
Notes:
svn path=/head/; revision=90412
Diffstat (limited to 'emulators/vmware2')
-rw-r--r-- | emulators/vmware2/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emulators/vmware2/Makefile b/emulators/vmware2/Makefile index f4cebca868f9..ef29fda9a6d4 100644 --- a/emulators/vmware2/Makefile +++ b/emulators/vmware2/Makefile @@ -98,7 +98,7 @@ post-patch: .if ${OSVERSION} >= 500023 ${CAT} ${FILESDIR}/kse.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif -.if ${OSVERSION} >= 500027 +.if ${OSVERSION} >= 500027 || ${OSVERSION} < 500000 && ${OSVERSION} >= 480102 ${CAT} ${FILESDIR}/pmap.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif ${CP} ${FILESDIR}/Makefile ${WRKSRC} @@ -129,8 +129,10 @@ post-patch: .if ${OSVERSION} >= 500104 ${CAT} ${FILESDIR}/cdevsw.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif -.if ${OSVERSION} >= 500109 +.if ${OSVERSION} >= 500109 || ${OSVERSION} < 500000 && ${OSVERSION} >= 480102 ${CAT} ${FILESDIR}/hostif_c.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 +.endif +.if ${OSVERSION} >= 500109 ${CAT} ${FILESDIR}/vm_types_h.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 .endif ${CAT} ${FILESDIR}/vmnet-only+Makefile.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 |