Changeset 77754 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Mar 18, 2019 12:23:18 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/fs.h
r77231 r77754 35 35 # include <sys/stat.h> 36 36 #endif 37 #ifdef RT_OS_FREEBSD 38 # include <osreldate.h> 39 #endif 37 40 38 41 RT_C_DECLS_BEGIN … … 65 68 #endif 66 69 70 #ifdef RT_OS_FREEBSD 71 # if __FreeBSD_version >= 500000 /* 5.0 */ 72 # define HAVE_STAT_BIRTHTIME 73 # endif 74 # if __FreeBSD_version >= 900000 /* 9.0 */ 75 # define HAVE_STAT_TIMESPEC_BRIEF 76 # else 77 # ifndef __BSD_VISIBLE 78 # define __BSD_VISIBLE 79 # endif 80 # define HAVE_STAT_TIMESPEC 81 # endif 82 #endif 83 67 84 RT_C_DECLS_END 68 85
Note:
See TracChangeset
for help on using the changeset viewer.