Auf dem Raspberry läuft Raspbian (vom 16.12.2012). Nachdem ich den Rechner das erste Mal gebootet habe, habe ich zunächst alle Bestandteile eines LAMP-Servers installiert. Hierfür gibt ja schon genügend Tutorials im Netz.
Danach habe ich mich an einem anderen Thread orientiert:
http://www.funkmeldesystem.de/foren/...ad.php?t=52721
Code:
sudo apt-get install autoconf libtool
sudo apt-get install subversion
svn co http://svn.monitord.de/monitor/trunk monitord
Nach der Eingabe
Code:
sudo autoreconf -fi ./configure --with-alsa --enable-plugins --with-mysql make
kommt jedoch die Meldung
Code:
auroreconf: 'configure.ac' or 'configure.in' is required
Daraufhin habe ich in dem Ordner ./monitord gesehen, dass die Datei configure.ac vorhanden ist und den Befehl wie folgt abgeändert:
Code:
sudo autoreconf -fi ./configure.ac --with-alsa --enable-plugins --with-mysql make
Danach kamen die Meldungen
Code:
libtoolize: puttin auxiliary files in '.'.
libtoolize: copying file'.ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
libtoolize: 'AC_PROG_RANLIB' is rendered absolete by 'LT_INIT'
auroreconf: 'configure.ac' or 'configure.in' is required
Und genau da weiss ich nicht mehr weiter.