Fixed missing includes for Linux
This commit is contained in:
parent
db324b2295
commit
e4dd16f5c3
1 changed files with 6 additions and 1 deletions
|
@ -23,6 +23,11 @@
|
|||
#ifdef __APPLE__
|
||||
#include <mach/mach.h>
|
||||
#endif
|
||||
#ifdef __linux__
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/sendfile.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <boost/log/core.hpp>
|
||||
|
|
Loading…
Reference in a new issue