Marinos Koutsomichalis

Results 10 comments of Marinos Koutsomichalis

Is this considered fixed? I'm having the same issue (along with the probably related #122 which also happens here): I'm asked several times for my passprhase (4 or 5), it...

@Jumblemuddle `gpgconf --kill gpg-agent` doesn't do the trick here, still the same behaviour.

@dengste In my case it's exactly as you say is should be (after executing `gpgconf --reload gpg-agent` it DID ask me to enter the password). Then I tried `org-caldav-sync` and...

@dengste yes it all works the way you describe. There are no epa- or epg- variables in my .emacs (can't be sure if there are any, however, in some other...

I've managed to progress a little bit with this `-DCMAKE_CXX_FLAGS="--std=c++17 -D_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES"` but only to fall into this [https://github.com/boostorg/mpl/issues/69](url)

OK, boost 1.81 and clang17 did it for me. This works fine here: `cmake -DSC_EL=ON -DSUPERNOVA=OFF -DSC_ABLETON_LINK:BOOL=OFF -DSC_EL_BYTECOMPILE:BOOL=ON -DNATIVE=ON -DCMAKE_PREFIX_PATH=/opt/local/libexec/qt5 -DCMAKE_OSX_ARCHITECTURES=arm64 -DCMAKE_CXX_FLAGS="--std=c++17 -D_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES" -DCMAKE_C_COMPILER=clang-mp-17 -DCMAKE_CXX_COMPILER=clang++-mp-17 -DSYSTEM_BOOST:BOOL=ON -DBOOST_ROOT=/opt/local/libexec/boost/1.81 ..`

You might not have clang17, or might be under a different name. First make sure you have clang17 installed. You could try writing `clang` and pressing tab to see the...

'clang++-mp-17' is how it's called in my machine. In yours it could be clang++17 or something else.

Do you have Qt5-webengine installed? You can probably do this with homebrew and then you should update the `-DCMAKE_PREFIX_PATH=/opt/local/libexec/qt5` so that it shows the correct location. This is where macports...

`lame_encode_buffer_interleaved` is a libmp3lame library function - I think it should be`lame_encode_buffer_interleaved` and NOT `_lame_encode_buffer_interleaved`. In any case it's libsndfile that calls it, so first step is to check if...