Hey all,
Not sure what I should ignore and what I shouldnt any more with the latest builds.
When I run ./configure I was getting the following errors
checking for cc libiconv ... fail
checking for pkg liburiparser ... fail
checking for ffmpeg libraries ... fail
checking for pkg libavcodec >=55.34.1 ... fail (detected 53.35.0)
To fix the libiconv I used
wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz
tar -xvzf libiconv-1.14.tar.gz
cd libiconv-1.14
./configure
make
make install
ffparser I used
apt-get install liburiparser-dev
I tried to fix ffmpeg but it still failed using this command
apt-get install ffmpeg
libavcodec I havent tried fixing
Question 1: Am I right in thinking I Can just skip ffmpeg and libavcodec by using the following command to build a internal set of tools?
AUTOBUILD_CONFIGURE_EXTRA=--enable-libffmpeg_static ./Autobuild.sh -t precise-amd64
Question 2:
When I call the above autobuild command I get this error.
dpkg-shlibdeps -Tdebian/tvheadend.substvars debian/tvheadend/usr/bin/tvheadend
dpkg-shlibdeps: error: no dependency information found for /usr/local/lib/libiconv.so.2 (used by debian/tvheadend/usr/bin/tvheadend)
dh_shlibdeps: dpkg-shlibdeps -Tdebian/tvheadend.substvars debian/tvheadend/usr/bin/tvheadend returned exit code 2
make: *** [binary] Error 2
dpkg-buildpackage: error: debian/rules binary gave error exit status 2
What am I missing?