Merge pull request #577 from devnexen/master

missing unistd.h including for F_OK for non Linux oses.
This commit is contained in:
Andreas 2016-01-03 16:34:47 +13:00
commit ddf9d0bbd4

View file

@ -34,6 +34,9 @@
#include <sys/stat.h> // for setting the permissions of the preferences file
#include <boost/concept_check.hpp>
#ifndef _WIN32
#include <unistd.h>
#endif
static lg::log_domain log_config("config");
#define ERR_CFG LOG_STREAM(err , log_config)