Hello, how to install TokuToku? https://github.com/HaikuArchives/TokuToku
I don`t see it in depot.
Hello, how to install TokuToku? https://github.com/HaikuArchives/TokuToku
I don`t see it in depot.
there is no recipe for it at Haikuports. PRs welcome!
So what to do now? I`ve cloned it with
git clone https://github.com/HaikuArchives/TokuToku
however I dont know what to do now. After entered that location I entered "make", but it didn
t worked (I guess no make file there). Any suggestion?
Apparently, it uses jam files instead of makefiles. You have to type:
jam
Yes. I have x86 nightly and get errors too. Hm, bad. :-/ Seems that last update was at 2015, and Haiku changed api or something like that, so it don`t build any more.
I’ve fixed (or at least I think I have) the errors relating to Haiku API changes and some 64bit issues. Now the program compiles but it doesn’t link because it needs libgadu. So I downloaded that and tried to compile it. ./configure completes, but when compiling the library there are errors in the example. The code is in plain C, so it’s a bit above my head I guess But I will take a look at it again tomorrow if I find the time.
In any case, I will make a pull request with my changes to TokuToku tomorrow. Maybe somebody wants to jump in and help with the library.
Ok, here we go…
I got libgadu to compile on Haiku and TokuToku to link with it. The application starts with some sort of profile create dialog. That’s as far as I could test it due to my virtually non-existing knowledge of the Polish language
@General_Edmund_Duke:
Here is roughly what you have to do to compile TokuToku at the moment.
#include<sys/select.h>
near the top of the file where the other include statements are../configure --prefix=/boot/system/non-packaged/develop --includedir=/boot/system/develop/headers
make
and then make install
git clone https://github.com/andimachovec/TokuToku
jam -q
That should leave you with a hopefully working TokuToku executable.
Remember that since you are on 32bit Haiku you have to switch the compiler environment to gcc7 with setarch x86
before you do anything compiler related in the Terminal. Otherwise you will use gcc2 and all sorts of strange stuff may happen Also the library names in pkgman are different, you’ll need the ones ending with _x86 i think.
Well, that’s all for now, hope I didn’t forget anything. Feel free to ask if something isn’t working.
Thanks man! Ill try it as soon as I
ll arrive home!