diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-06-15 18:01:41 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-06-15 18:01:41 +0000 |
commit | afbf09cc33941f6e8015ea2a99665add0df3b03a (patch) | |
tree | 20f102f5b020555aa5c69e63988fe71abbce0db2 /emulators/virtualbox-ose-legacy/files/patch-src-VBox-Additions-common-VBoxGuest-VBoxGuest-freebsd.c | |
parent | - Respect LOCALBASE if it is changed to custom value (diff) |
VirtualBox is a family of powerful x86 virtualization products for
enterprise as well as home use. Not only is VirtualBox an extremely
feature rich, high performance product for enterprise customers, it
is also the only professional solution that is freely available as
Open Source Software under the terms of the GNU General Public License.
WWW: http://www.virtualbox.org/
Note:
Please READ pkg-messages carefully, also please
take a look in the Wiki page (http://wiki.freebsd.org/VirtualBox)
Thanks to: thank you to everyone who helped make this possible.
Diffstat (limited to 'emulators/virtualbox-ose-legacy/files/patch-src-VBox-Additions-common-VBoxGuest-VBoxGuest-freebsd.c')
-rw-r--r-- | emulators/virtualbox-ose-legacy/files/patch-src-VBox-Additions-common-VBoxGuest-VBoxGuest-freebsd.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/emulators/virtualbox-ose-legacy/files/patch-src-VBox-Additions-common-VBoxGuest-VBoxGuest-freebsd.c b/emulators/virtualbox-ose-legacy/files/patch-src-VBox-Additions-common-VBoxGuest-VBoxGuest-freebsd.c new file mode 100644 index 000000000000..64ed1b6899f8 --- /dev/null +++ b/emulators/virtualbox-ose-legacy/files/patch-src-VBox-Additions-common-VBoxGuest-VBoxGuest-freebsd.c @@ -0,0 +1,14 @@ +--- src/VBox/Additions/common/VBoxGuest/VBoxGuest-freebsd.c.old 2009-05-04 20:29:23.000000000 +0200 ++++ src/VBox/Additions/common/VBoxGuest/VBoxGuest-freebsd.c 2009-05-04 20:30:28.000000000 +0200 +@@ -228,7 +228,11 @@ + if (rc) + { + *ppDev = make_dev(&g_VBoxGuestFreeBSDChrDevSW, ++#if __FreeBSD_version < 800062 + unit2minor(iUnit), ++#else ++ iUnit, ++#endif + UID_ROOT, + GID_WHEEL, + 0644, |