alex-tee

Results 79 comments of alex-tee

My use case is similar to zstd: https://github.com/falkTX/Carla/ This project uses Makefiles as the main build system and has cmake build scripts in the `cmake` directory. I've seen more projects...

I often need to build this project from latest git. This means I have to manage a copy of the CMakeLists.txt file and apply any changes when i want to...

test: ``` ./_build/carla-discovery-native vst3 /usr/lib/vst3/ParallelDetune.vst3 "/home/alex/.config/UhhyouPlugins/style/style.json" is not regular file or doesn't exist. carla-discovery::init::------------ carla-discovery::build::2 carla-discovery::hints::4104 carla-discovery::category::other carla-discovery::name::ParallelDetune carla-discovery::label::0x42D5E208,0xA916474A,0xB45B302C,0x62BC1650 carla-discovery::maker:: carla-discovery::audio.ins::2 carla-discovery::audio.outs::2 carla-discovery::cv.ins::0 carla-discovery::cv.outs::0 carla-discovery::midi.ins::1 carla-discovery::midi.outs::0 carla-discovery::parameters.ins::133 carla-discovery::parameters.outs::0 carla-discovery::end::------------ ```

Thanks, I reported it upstream. > related discussion https://forums.steinberg.net/t/iaudioprocessor-setprocessing-fails-in-many-plugins/785558 > seems to be a common dev mistake As it seems that many plugins return `kUnimplemented`, and a "steinberger" (?) moderator...

does this fix this issue? https://github.com/ximion/appstream/pull/510

one of the problems is hardcodig `/usr/include` in https://github.com/ximion/appstream/blob/main/meson.build#L167 passing `-Dstemming=false` works around it for now. another problem I had was docs failing to build (and they also pull in...

not for me, i just want to build libadwaita, but i'm sure MSYS2 would like to have manpages like every other software it packages

MSYS build succeeded for me after skipping docs and disabling stemming as mentioned above PKGBUILD file posted here: https://github.com/msys2/MINGW-packages/issues/17448#issuecomment-1712374477

@ximion re stemming: libstemmer and snowball are already packaged in MSYS2 so they are usable: https://packages.msys2.org/package/mingw-w64-ucrt-x86_64-libstemmer?repo=ucrt64 the only problem is the meson config using a hardcoded include dir that doesn't...

how about this then? although i believe the best course of action is to add a meson option to explicitly specify where to look for it, defaulting to `get_option ('prefix')...