VirtualBox

Ignore:
Timestamp:
Aug 21, 2010 7:37:58 PM (14 years ago)
Author:
vboxsync
Message:

VBoxFUSE: Port to FreeBSD

Location:
trunk/src/VBox/ImageMounter/VBoxFUSE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ImageMounter/VBoxFUSE/Makefile.kmk

    r28800 r31844  
    5151VBoxFUSE_LIBS.darwin = fuse
    5252VBoxFUSE_LIBS.linux = fuse
     53VBoxFUSE_LIBS.freebsd = fuse
    5354VBoxFUSE_LIBPATHS.darwin = /usr/local/lib
    5455
  • trunk/src/VBox/ImageMounter/VBoxFUSE/VBoxFUSE.cpp

    r31455 r31844  
    10091009    if (pInfo->flags & (  O_APPEND | O_ASYNC | O_DIRECT /* | O_LARGEFILE ? */
    10101010                        | O_NOATIME | O_NOCTTY | O_NOFOLLOW | O_NONBLOCK
     1011                        /* | O_SYNC ? */))
     1012        return -EINVAL;
     1013    if ((pInfo->flags & O_ACCMODE) == O_ACCMODE)
     1014        return -EINVAL;
     1015#elif defined(RT_OS_FREEBSD)
     1016    if (pInfo->flags & (  O_APPEND | O_ASYNC | O_DIRECT /* | O_LARGEFILE ? */
     1017                        | O_NOCTTY | O_NOFOLLOW | O_NONBLOCK
    10111018                        /* | O_SYNC ? */))
    10121019        return -EINVAL;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette