Hi,<br><br>When compiling fluxus from the CSV repository, I've the following error :<br><br> fluxa/src/OSCServer.cpp<br> fluxa/src/OSCServer.cpp: In static member function 'static int OSCServer::DefaultHandler(const char*,  const char*, lo_arg**, int, void*, void*)':<br>
 fluxa/src/OSCServer.cpp:66: error: 'lo_arg_size' was not declared in this scope<br><br>then I've corrected it with the following modification at the begining of the file fluxa/src/OSCServer.cpp after the includes statements :<br>
<br>extern "C" {<br>   size_t lo_arg_size (lo_type type, void *data);<br>}<br><br>This is because the function declaration does not exist in my liblo library package liblo-devel-0.25-1mdv2009.0. Moreover, the declaration does not exist in the source package from sourceforge but exist in the svn repository (revision 140 file lo_lowlevel.h) of this library.<br>
<br>So, this modification will be correct until the new release of the liblo. <br><br>My configuration is :<br>Mandriva 2009<br>plt-mzscheme 4.1<br>liblo 0.25<br>gcc 4.3.2<br><br>Regards,<br><br>Fabien<br>