# HG changeset patch # User Chris Cannam # Date 1458315028 0 # Node ID a6929fb9cc777cbc8f5656324f44b77f03967cc7 # Parent 0ad516dc5d8d1eac370c7f43eeb7775919e0f2e9 Win32 build fix diff -r 0ad516dc5d8d -r a6929fb9cc77 system/System.cpp --- a/system/System.cpp Fri Mar 18 13:42:54 2016 +0000 +++ b/system/System.cpp Fri Mar 18 15:30:28 2016 +0000 @@ -325,7 +325,17 @@ double princarg(double a) { return mod(a + M_PI, -2 * M_PI) + M_PI; } float princargf(float a) { return float(princarg(a)); } -#ifndef _WIN32 +#ifdef _WIN32 + +PluginLoadStatus +TestPluginLoadability(QString soname, QString descriptorFn) +{ + //!!! Can't do the POSIX logic below, but we have no good + // alternative here yet + return PluginLoadOK; +} + +#else #include #include