On Thu, Mar 31, 2005 at 10:00:42 +1000, Shayne O'Connor wrote:
[mrmachine@localhost dssi-vst-0.3.1]$ make
g++ -g3 -Wall remotevstclient.cpp -c
remotevstclient.cpp: In static member function `static void
RemoteVSTClient::queryPlugins(std::vector<RemoteVSTClient::PluginRecord,
std::allocator<RemoteVSTClient::PluginRecord> >&)':
remotevstclient.cpp:362: error: `errno' undeclared (first use this
function)
remotevstclient.cpp:362: error: (Each undeclared identifier is
reported only once for each function it appears in.)
remotevstclient.cpp:362: error: `EINTR' undeclared (first use this
function)
remotevstclient.cpp:362: error: `EAGAIN' undeclared (first use this
function)
make: *** [remotevstclient.o] Error 1
[mrmachine@localhost dssi-vst-0.3.1]$
jack_fst still compiles and works fine.
any ideas? (this is with wine 20050111 rpm + devel).
Try adding
#include <error.h>
to the top of remotevstclient.cpp
- Steve