Not signed in (Sign In)

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

    •  
      CommentAuthorPablo
    • CommentTimeNov 27th 2009
     
    Hi!
    I succesfully compiled dsi-vst after a clean install of ubuntustudio 9.10.
    but I encountered some problems, luckily solved in the end.

    dssi plugins were installed during US installation.
    wine is installed by default but I had to run winecfg (emulate Windows XP and choose alsa in the audio tab).

    I installed the following packages from US:

    build-essential
    wine-dev
    liblo0-dev
    dssi-dev (this one installed libjack-dev and libjack0100.0-dev)
    libasound2-dev

    I checked the paths of dssi and ladspa, then I edited the makefile and now DSSDIR and LADSPADIR are /usr/lib/dssi and /usr/lib/ladspa, respectively.
    I also changed the BINDIR to /usr/bin/ but I think this is irrelevant and it is more correct leaving it alone (usr/local/bin), as this is a local installation (I am not sure about this)

    Then, it didn't compile! It seems that some C++ functions (sprintf and one or two more) need 'cstdio'.
    gcc version is 4.4.1 (Ubuntu 4.4.1-4ubuntu8) .

    To solve it, in these files:

    remotepluginclient.cpp
    remotepluginserver.cpp
    rdwrops.cpp
    remotevstclient.cpp

    I needed to add:

    #include <cstdio>

    Thanks a lot for this great piece of software!