Solved Problems during configure
#1
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
checking for FRIBIDI... yes
checking for SQLITE3... yes
checking for PNG... yes
checking for PCRECPP... yes
checking for PCRE... yes
checking for CDIO... yes
checking for SAMPLERATE... yes
checking for FREETYPE2... yes
checking for TAGLIB... yes
checking for ZIP... yes
checking for LIBBLURAY... yes
checking for libbluray soname... no
configure: error: Unable to determine soname of libbluray library
make: *** [../../../..//libxbmc.so] Fehler 1


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
checking for FRIBIDI... yes
checking for SQLITE3... yes
checking for PNG... yes
checking for PCRECPP... yes
checking for PCRE... yes
checking for CDIO... yes
checking for SAMPLERATE... yes
checking for FREETYPE2... yes
checking for TAGLIB... yes
checking for ZIP... yes
checking for main in -ldl... yes
checking for DBUS... no
configure: Could not find a required library. Please see the README for your platform.
checking for libmad soname... no
configure: error: Unable to determine soname of libmad library
make: *** [../../../..//libxbmc.so] Fehler 1


What could be wrong here?

Thx in advance!
Snoopy
Reply
#2
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)
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#3
thx a lot, git pull and the manual build of lidmad seems to work, xbmc is building right at this moment Wink
Reply

Logout Mark Read Team Forum Stats Members Help
Problems during configure0