diff options
author | mbr <mbr@FreeBSD.org> | 2010-01-03 00:33:57 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2010-01-03 00:33:57 +0800 |
commit | 9c459fb34a80b47f8556bfc5add292e8ca1bc1c3 (patch) | |
tree | f1670cedc2f0a4607a9935bcea025607b6f84f62 | |
parent | 12c705331de6974f05fa51bbb101fe4caa4353b3 (diff) | |
download | freebsd-ports-gnome-9c459fb34a80b47f8556bfc5add292e8ca1bc1c3.tar.gz freebsd-ports-gnome-9c459fb34a80b47f8556bfc5add292e8ca1bc1c3.tar.zst freebsd-ports-gnome-9c459fb34a80b47f8556bfc5add292e8ca1bc1c3.zip |
Check should be <= 900000
-rw-r--r-- | emulators/open-vm-tools/files/patch-freebsd-9 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/open-vm-tools/files/patch-freebsd-9 b/emulators/open-vm-tools/files/patch-freebsd-9 index 4480b149f161..e432bb7e2314 100644 --- a/emulators/open-vm-tools/files/patch-freebsd-9 +++ b/emulators/open-vm-tools/files/patch-freebsd-9 @@ -4,7 +4,7 @@ static void vxn_init(void *); static void vxn_start(struct ifnet *); static int vxn_ioctl(struct ifnet *, u_long, caddr_t); -+#if __FreeBSD_version >= 900000 ++#if __FreeBSD_version <= 900000 static void vxn_watchdog(struct ifnet *); +#endif static void vxn_intr (void *); @@ -14,7 +14,7 @@ ifp->if_ioctl = vxn_ioctl; ifp->if_output = ether_output; ifp->if_start = vxn_start; -+#if __FreeBSD_version >= 900000 ++#if __FreeBSD_version <= 900000 ifp->if_watchdog = vxn_watchdog; +#endif ifp->if_init = vxn_init; @@ -24,7 +24,7 @@ return error; } -+#if __FreeBSD_version >= 800087 ++#if __FreeBSD_version <= 900000 /* *----------------------------------------------------------------------------- * vxn_watchdog -- |