Not signed in (Sign In)

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

    •  
      CommentAuthorCrypto1971
    • CommentTimeDec 29th 2009
     
    Hi,
    I'm trying to compile dssi-vst 0.8 on my sidux (debian sid) notebook. It's a 32bit version of debian.

    After I enter the source file directory and enter "make" from command line I keep getting:

    lutz@pucki:/home/data/pcsetup/dssi-vst-0.8$ make
    wineg++ -m32 -Ivestige -Wall -fPIC remotepluginclient.cpp -c -o remotepluginclient.w32.o
    remotepluginclient.cpp: In constructor ‘RemotePluginClient::RemotePluginClient()’:
    remotepluginclient.cpp:41: error: ‘sprintf’ was not declared in this scope
    remotepluginclient.cpp:50: error: ‘perror’ was not declared in this scope
    remotepluginclient.cpp:64: error: ‘perror’ was not declared in this scope
    remotepluginclient.cpp:78: error: ‘perror’ was not declared in this scope
    winegcc: g++ failed
    make: *** [remotepluginclient.w32.o] Fehler 2

    Note that I have installed wine-unstable because the "Service Center" application that I need to online register my B4II does not run with the standard version of wine. I have liblo0 installed and all dev packages mentioned in the README file of dssi-vst.

    I had to de-install standard wine and that is why the *.deb package of dssi-vst v. 0.7 was deinstalled as well, as it requires libwine and wine (without "unstable") to be installed. Because I cannot use the *.deb package of dssi-vst that I already have I wanted to compile the latest version of dssi-vst myself, but without success, obviously. This dssi-vst deb package used to work well until I tried to register my B4II.

    I have read quite a bit about adding new <include...> lines to the source files, but I have not found what to do there exactly.

    Can you help me here?

    Thankyou in advance,
    Crypto.
    •  
      CommentAuthorCrypto1971
    • CommentTimeDec 29th 2009
     
    OK, I have gotten a bit further...

    In a thread elsewhere there it was mentioned to add the line

    #include <cstdio>

    to several *.h files. I did that and now I was able to pass the "make" command. But then... stuck with:

    root@pucki:/home/data/pcsetup/dssi-vst-0.8# make install
    mkdir -p /usr/lib/dssi/dssi-vst
    mkdir -p /usr/lib/ladspa
    mkdir -p /usr/bin
    install dssi-vst.so /usr/lib/dssi
    install dssi-vst.so /usr/lib/ladspa
    install dssi-vst-server.exe.so dssi-vst-server dssi-vst-scanner.exe.so dssi-vst-scanner dssi-vst_gui /usr/lib/dssi/dssi-vst
    install: Aufruf von stat für „dssi-vst-server“ nicht möglich: Datei oder Verzeichnis nicht gefunden ("calling stat for dssi-vst-server not possible: file or directory not found")
    install: Aufruf von stat für „dssi-vst-scanner“ nicht möglich: Datei oder Verzeichnis nicht gefunden("calling stat for dssi-vst-scanner not possible: file or directory not found")
    make: *** [install] Fehler 1

    What does this mean?

    Thanks in advance,
    Crypto.
    •  
      CommentAuthorPablo
    • CommentTimeDec 30th 2009
     
    Hi!

    See Syner's issue and bq's answer here:

    http://www.breakfastquay.com/forum/comments.php?DiscussionID=2

    To summarize, you have to rename '/home/data/pcsetup/dssi-vst-0.8/dssi-vst-server.exe' to dssi-vst-server
    The same for dssi-vst-scanner.exe

    Then, 'sudo make install' again.

    I didn't have this problem. It seems that depends on the version of wine. Go figure.

    Cheers! Pablo
    •  
      CommentAuthorCrypto1971
    • CommentTimeJan 3rd 2010
     
    @Pablo:

    YES!

    That was it. Renamed both files and then it all worked.

    Thanks a lot!

    Crypto.

    PS.: Maybe this is something worth mentioning in the README file of dssi-vst?