Stefan Sauer

Results 256 comments of Stefan Sauer

The jessie image has an old package. If you do apt-get update and then upgrade the package this will work. I had asked to update the jessie image, but on...

Which are the variables you exported? For the schema issues, do you do: ``` if [ -z $XDG_DATA_DIRS ]; then export XDG_DATA_DIRS="/usr/share"; fi export XDG_DATA_DIRS="$XDG_DATA_DIRS:$HOME/buzztrax/share" ```

Thanks for the report. The easiest way to get the sources is to run: ``` git clone https://github.com/Buzztrax/buzzmachines.git ``` This would create a directory "buzzmachines" with the sources. From within...

Did you try again? We can also interactively work through the issues in irc (irc.freenode.net/#buzztrax) or the gitter chat: https://gitter.im/Buzztrax/buzztrax

I think this is the right fix. If you are unsure push to a branch, but I am fine if you'd like to push this fix to the master (remember...

@trusktr those are just shorthands. Things like uint8 need more care.

We actually need to fix ./Matilde/Tracker/SurfsDSPLib/SRF_Types.h to define them for MacOS too. According to http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system we can probably add **APPLE** like change #ifdef WIN32 to #if defined(WIN32) && defined(**APPLE**) Can...

I think they ought to be -= and +=, please go ahead and make the change. That's why it is good to have all these sources in this repo.

As we also have double const s = *psamples; in https://github.com/Buzztrax/buzzmachines/blob/master/Elak/Dist2/dist2.cpp#L282 we can rewrite https://github.com/Buzztrax/buzzmachines/blob/master/Elak/Dist2/dist2.cpp#L288-295 to if (s >= 0) { *psamples = -s ; } else { *psamples =...

Pushed 5f06bd6a6fee52fd545214962b9b28828f9b5fb8, does that fix the build at least?