Add a missing #define to our MSVC project (portaudio_backend)
[ardour.git] / libs / ardour / mac_vst_support.cc
index d86d3d5825c6261a2085fcf7c1b5068dbea9de54..686c54f747974476a41e6974ccba82e0dec78ad3 100644 (file)
@@ -24,6 +24,7 @@
 #include <signal.h>
 #include <dlfcn.h>
 #include <string.h>
+#include <strings.h>
 #include <time.h>
 #include <unistd.h>
 #include <pthread.h>
@@ -80,7 +81,7 @@ static VSTState *
 mac_vst_new ()
 {
        VSTState* mac_vst = (VSTState *) calloc (1, sizeof (VSTState));
-       mac_vst->init();
+       vststate_init (mac_vst);
        return mac_vst;
 }