diff options
Diffstat (limited to 'README.ubuntu')
-rw-r--r-- | README.ubuntu | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/README.ubuntu b/README.ubuntu index ebf6b4cf65..dadc265348 100644 --- a/README.ubuntu +++ b/README.ubuntu @@ -51,6 +51,16 @@ In this case you will have to manually compile the latest version. # ./configure --prefix=/usr # make # sudo make install + +On 8.04 and older versions, libcurl is outdated and thus XBMC will not compile properly. +In this case you will have to manually compile the latest version. + # wget "wget http://curl.sourceforge.net/download/curl-7.19.7.tar.gz" + # tar -xzf curl-7.19.7.tar.gz + # cd curl-7.19.7 + # ./configure --disable-ipv6 --without-libidn --without-libssh2 --disable-ldap --prefix=/usr + # make + # sudo make install + -------------------------------------------------------------- 3.2. Use a single command to get all build dependencies -------------------------------------------------------------- |