Merge pull request #3688 from birarda/verbose-log-silencer

include unistd only on Q_OS_LINUX
This commit is contained in:
Stephen Birarda 2014-10-29 11:18:17 -07:00
commit e3dafe65d0

View file

@ -17,7 +17,7 @@
#define getpid _getpid
#define getppid _getpid // hack to build
#define pid_t int // hack to build
#else
#elif Q_OS_LINUX
#include <unistd.h> // for getpid() on linux
#endif