![]() |
Solved Problems during configure - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: Android (https://forum.kodi.tv/forumdisplay.php?fid=164) +---- Thread: Solved Problems during configure (/showthread.php?tid=155080) |
Problems during configure - snoopy1978 - 2013-02-06 Hi all, I followed the manual found in README.android to build xbmc for android by myself. Therefore I use a newly installed Ubuntu 11.10 Desktop 32Bit. I downloaded the android-sdk and -ndk, made the buildchain and compiled the dependencies which ended in a success message, that all dependencies could succsefully been build. Now I'm at the point to compile xbmc itself with this command from the manual: make -C tools/android/depends/xbmc The config ends up with this error: Code: checking pkg-config is at least version 0.9.0... yes In "tools/android/depends/xbmc/Makefile" I add a "--disable-libbluray" (does bluray support really makes sense on android?!) to the configure - line which brings me a little step further, now it crashes here: Code: checking pkg-config is at least version 0.9.0... yes What could be wrong here? Thx in advance! Snoopy RE: Problems during configure - Memphiz - 2013-02-06 should be fixed in lastest master (git pull) also do another make in the depends - seems not all dependencies got built (this happens sometimes when doing a massive parallel build by using the -j option of make). (in your case libmad seems to be missing - you can make it seperate by doing "make -C tools/android/depends/libmad clean && make -C tools/android/depends/libmad) RE: Problems during configure - snoopy1978 - 2013-02-06 thx a lot, git pull and the manual build of lidmad seems to work, xbmc is building right at this moment ![]() |