changeset 130:44e6b94c2696

* patch from Tim Blechmann for gcc-4.3 compile
author cannam
date Tue, 11 Mar 2008 09:22:53 +0000
parents 8e11b0bbcb3c
children 761d248f0198
files host/vamp-simple-host.cpp vamp-sdk/PluginAdapter.cpp vamp-sdk/PluginHostAdapter.cpp vamp-sdk/hostext/PluginLoader.cpp
diffstat 4 files changed, 9 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/host/vamp-simple-host.cpp	Thu Feb 28 14:51:35 2008 +0000
+++ b/host/vamp-simple-host.cpp	Tue Mar 11 09:22:53 2008 +0000
@@ -46,6 +46,9 @@
 #include <set>
 #include <sndfile.h>
 
+#include <cstring>
+#include <cstdlib>
+
 #include "system.h"
 
 #include <cmath>
--- a/vamp-sdk/PluginAdapter.cpp	Thu Feb 28 14:51:35 2008 +0000
+++ b/vamp-sdk/PluginAdapter.cpp	Tue Mar 11 09:22:53 2008 +0000
@@ -36,9 +36,11 @@
 
 #include "PluginAdapter.h"
 
+#include <cstring>
+#include <cstdlib>
+
 //#define DEBUG_PLUGIN_ADAPTER 1
 
-
 namespace Vamp {
 
 class PluginAdapterBase::Impl
--- a/vamp-sdk/PluginHostAdapter.cpp	Thu Feb 28 14:51:35 2008 +0000
+++ b/vamp-sdk/PluginHostAdapter.cpp	Tue Mar 11 09:22:53 2008 +0000
@@ -35,6 +35,7 @@
 */
 
 #include "PluginHostAdapter.h"
+#include <cstdlib>
 
 namespace Vamp
 {
--- a/vamp-sdk/hostext/PluginLoader.cpp	Thu Feb 28 14:51:35 2008 +0000
+++ b/vamp-sdk/hostext/PluginLoader.cpp	Tue Mar 11 09:22:53 2008 +0000
@@ -43,6 +43,8 @@
 #include <fstream>
 #include <cctype> // tolower
 
+#include <cstring>
+
 #ifdef _WIN32
 
 #include <windows.h>