Kodi Community Forum

Full Version: squish not found [solved]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Compiling from git clone git://github.com/xbmc/xbmc.git ,following instructions from http://kodi.wiki/view/HOW-TO_compile_XBM...ian/Ubuntu

Code:
make: Entering directory '/home/katja/xbmc/tools/depends/native/libsquish-native'
make: Nothing to be done for 'all'.
make: Leaving directory '/home/katja/xbmc/tools/depends/native/libsquish-native'
checking for SQUISH... no
configure: error: "squish not found"

tried
cd /home/katja/xbmc/tools/depends/native/libsquish-native/i686-linux-native/
and then sudo make install, but still got the squish not found.

how to proceed?
provide more details.
Code:
make: Entering directory '/home/katja/xbmc/tools/depends/native/libsquish-native'
make: Nothing to be done for 'all'.
means that squish was already built and installed.
In doubt do and start fresh
Code:
git clean -xfd
(2015-10-15, 13:09)wsnipex Wrote: [ -> ]
Code:
git clean -xfd

The build went much better today and now it's all up and running. Refreshed the git like you suggested. Also needed to add a repo to get all the build deps. I'll just paste in exactly what worked for me in Debian Jessie in case someone else has the same problem and stumbles across this post.


add to /etc/apt/source.list
Code:
deb http://www.deb-multimedia.org jessie main

Code:
sudo apt-get update

Code:
sudo apt-get install libfribidi-dev  libgif-dev libgl1-mesa-dev  libglew-dev libglu1-mesa-dev  libiso9660-dev libjasper-dev libjpeg-dev libltdl-dev liblzo2-dev libmicrohttpd-dev  libmodplug-dev libmpcdec-dev libmpeg2-4-dev libmysqlclient-dev libnfs-dev libogg-dev  libpcre3-dev libplist-dev libpng12-dev libpulse

Code:
sudo make -C tools/depends/target/crossguid PREFIX=/usr/local

Code:
./bootstrap

Code:
./configure

Code:
make -j4

Code:
sudo make install

Pretty much exactly as in README.linux, but with the addition of needing to add that repo for build deps.
good. please mark as solved.