# HG changeset patch # User Chris Cannam # Date 1477302681 -3600 # Node ID c996610b8a4645be9972d7f4c8d644327b78bfac # Parent 2586f4be738ce69826bc3025a5d71e4ef9c827d9 Win32 build fix diff -r 2586f4be738c -r c996610b8a46 vamp-server/server.cpp --- a/vamp-server/server.cpp Thu Oct 20 18:33:36 2016 +0100 +++ b/vamp-server/server.cpp Mon Oct 24 10:51:21 2016 +0100 @@ -13,7 +13,14 @@ #include #include -#include // getpid for logging +// pid for logging +#ifdef _WIN32 +#include +static int pid = _getpid(); +#else +#include +static int pid = getpid(); +#endif using namespace std; using namespace piper_vamp; @@ -24,8 +31,6 @@ // - Use Vamp C API (vamp.h) directly rather than converting to C++ //!!! Doing the above for process() and finish() alone would be a good start -static int pid = getpid(); - void usage() { string myname = "piper-vamp-server";