Merge pull request #3686 from AndrewMeadows/inertia

fix linux build for missing getpid()
This commit is contained in:
Stephen Birarda 2014-10-29 10:34:48 -07:00
commit 200f5e38b6

View file

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