David Roman
David Roman
> There's no need. It works only with Version 1.8.3.1. Then please, remove the other one. > I don't have the code knowledge to open a PR to add the...
Oh, that was more obvious than I thought at first. Installing ja-ipafonts allowed supersonic to work properly (I had songs with japanese characters). I hope that bumping the UI toolkit...
Yes. Seems now is working :) Thanks
Which distro and harfbuzz version do you use? Maybe it's a different issue that the one I was facing.
I didn't know if the publisher would queue the messages until high watermark is hit before dropping, if it did then this would work, if not I would receive a...
I don't know if it supports it. The program overall is CPU bound
It doesnt define any install target + seems to only compile a static library. You can define src_install and use `dolib` and patch CMake so it can generate a shared...
Something like: ``` IUSE="test" RESTRICT="!test? ( test )" src_configure() { local mycmakeargs=( -DFAST_OBJ_BUILD_TEST=$(usex test) ) cmake_src_configure } src_install() { dolib.a "${BUILD_DIR}/libfast_obj_lib.a" } ``` You could patch the CMakeLists.txt fail and...
> > You could patch the CMakeLists.txt fail and change the STATIC library to SHARED > > In this PR? OR in [Organic Maps](https://github.com/gentoo/guru/pull/297)? In this PR, I guess Organic...
What I usually do, is git clone the repository, modify it as needed (in this case change the CMakeLists.txt line that creates a STATIC library to SHARED, see https://cmake.org/cmake/help/latest/command/add_library.html for...