![]() |
Kodi Leia configure error on Fedora 34 - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93) +--- Thread: Kodi Leia configure error on Fedora 34 (/showthread.php?tid=363923) |
Kodi Leia configure error on Fedora 34 - dancaer69 - 2021-08-10 I'm trying to build kodi Leia on fedora and I get a cmake error at configure: Code: CMake Error at cmake/platform/linux/wayland.cmake:13 (message): Code: cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=wayland -DAPP_RENDER_SYSTEM=gl -WAYLAND_RENDER_SYSTEM=gl RE: Kodi Leia configure error on Fedora 34 - wsnipex - 2021-08-10 Quote: RE: Kodi Leia configure error on Fedora 34 - dancaer69 - 2021-08-10 This works, thank you very much. RE: Kodi Leia configure error on Fedora 34 - dancaer69 - 2021-08-10 Now I'm getting an error for ffmpeg EDIT: I thought that I had ffmpeg installed but it wasn't. After I installed and rerun cmake I get error on dvdnav Quote:gmake[4]: Leaving directory '/home/useful/build/kodi-leia-build/kodi-build/build/libdvd/src/dvdnav-build'EDIT2: fixed after install libdvdnav-devel, but again new error comes up. RE: Kodi Leia configure error on Fedora 34 - asavah - 2021-08-10 @dancaer69 provide exact configure line you are using and full make output via Kodi Paste Site or any other paste site. Kodi build system pulls in it's own patched dvd* libs, I think the error you are getting is not due to dvdnav but due to something else that happened earlier, build process continuing for a while after an error is normal for multijob builds, thats why full output is needed. RE: Kodi Leia configure error on Fedora 34 - dancaer69 - 2021-08-11 The configure line I use is exactly the one you suggested above. The complete output is this: https://paste.kodi.tv/eruqeqapet And the full cmake output: https://paste.kodi.tv/macaqeroba.kodi RE: Kodi Leia configure error on Fedora 34 - wsnipex - 2021-08-11 doesn't look like a clean cmake run. Delete CMakeCache.txt and run again. Also, you need python 2.7, it won't work with anything newer. RE: Kodi Leia configure error on Fedora 34 - dancaer69 - 2021-08-11 I did it but I think I have the same error, here is the new cmake output: https://paste.kodi.tv/ezikoloqov.kodi P.S: yes I have python 2.7 installed RE: Kodi Leia configure error on Fedora 34 - asavah - 2021-08-12 (2021-08-11, 13:28)dancaer69 Wrote: yes I have python 2.7 installed But do you have python2.7 headers installed? It should be python2-devel or something like that in fedora, this package may have been removed from the distro due to python 2.x being officially dead and unsupported, ask on your distro forums. It's building against python3 headers hence the error; PyString_FromStringAndSize is a python2 function not present in python3.
RE: Kodi Leia configure error on Fedora 34 - dancaer69 - 2021-08-12 No, I haven't. I just installed fedora for first time, and I installed what was available for python2. There is no python2-devel package and I seems that is removed, according to this: https://fedoraproject.org/wiki/Changes/RetirePython2 Hence I don't think that is possible to build leia in fedora. https://fedoraproject.org/wiki/Changes/RetirePython2 |