# HG changeset patch
# User Chris Cannam <cannam@all-day-breakfast.com>
# Date 1484934776 0
# Node ID 6ccb195d6de6f5f27ed93eea3c05997aafe0865e
# Parent  255403a4b3216cb951a0a2f8c620ab75be704652
Fix some include paths, configure Vamp SDK without host

diff -r 255403a4b321 -r 6ccb195d6de6 .travis.yml
--- a/.travis.yml	Fri Jan 20 17:46:56 2017 +0000
+++ b/.travis.yml	Fri Jan 20 17:52:56 2017 +0000
@@ -19,7 +19,7 @@
 before_install:
   - ( cd ../ ; git clone https://github.com/piper-audio/piper )
   - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk )
-  - ( cd ../vamp-plugin-sdk ; ./configure && make sdkstatic )
+  - ( cd ../vamp-plugin-sdk ; ./configure --disable-programs && make sdkstatic )
   - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto )
   - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i )
   - ( cd ../capnproto/c++ ; ./configure && make && sudo make install )
diff -r 255403a4b321 -r 6ccb195d6de6 vamp-client/qt/AutoPlugin.h
--- a/vamp-client/qt/AutoPlugin.h	Fri Jan 20 17:46:56 2017 +0000
+++ b/vamp-client/qt/AutoPlugin.h	Fri Jan 20 17:52:56 2017 +0000
@@ -37,7 +37,7 @@
 #define PIPER_AUTO_PLUGIN_H
 
 #include "ProcessQtTransport.h"
-#include "CapnpRRClient.h"
+#include "../CapnpRRClient.h"
 
 #include <cstdint>
 
diff -r 255403a4b321 -r 6ccb195d6de6 vamp-client/qt/ProcessQtTransport.h
--- a/vamp-client/qt/ProcessQtTransport.h	Fri Jan 20 17:46:56 2017 +0000
+++ b/vamp-client/qt/ProcessQtTransport.h	Fri Jan 20 17:52:56 2017 +0000
@@ -36,7 +36,7 @@
 #ifndef PIPER_PROCESS_QT_TRANSPORT_H
 #define PIPER_PROCESS_QT_TRANSPORT_H
 
-#include "SynchronousTransport.h"
+#include "../SynchronousTransport.h"
 
 #include <QProcess>
 #include <QString>