hzeller / gmrender-resurrect

Resource efficient UPnP/DLNA renderer, optimal for Raspberry Pi, CuBox or a general MediaServer. Fork of GMediaRenderer to add some features to make it usable.
GNU General Public License v2.0
839 stars 204 forks source link

autogen.sh fails on arm based ubuntu installation #2

Closed memetical closed 11 years ago

memetical commented 11 years ago

Running autogen.sh on a x86 based machine works fine, fails on an arm based ubuntu install though:

~/source/gmrender-resurrect$ ./autogen.sh 
autoreconf: Entering directory `.'
autoreconf: configure.in: not using Gettext
autoreconf: running: aclocal --force 
autoreconf: configure.in: tracing
autoreconf: configure.in: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
configure.in:53: error: possibly undefined macro: AC_SUBST
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1
uname -r
3.1.10-6-ac100
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 12.10
Release:        12.10
Codename:       quantal
hzeller commented 11 years ago

You need to install at least libtool, autoconf and automake IIRC to make this work. Also to be able to compile later, libupnp-dev and libgstreamer0.10-dev are needed.

sudo apt-get install libtool automake autoconf libupnp-dev libgstreamer0.10-dev

Let me know if you run in other problems.

Chris Baume has written a Blog-post about installing gstreamer (the original version, not this fork, but essentially similar) on a Raspberry Pi: http://chrisbaume.wordpress.com/2012/06/24/raspberry-pi-upnp-media-player/ - this might help as well.

memetical commented 11 years ago

Thank you for your reply. The problem were indeed the missing libraries.