dsdreamer wrote: > Okay, good to know this has been tackled by others before me. I see the > patched buildme.sh updates the troublesome, outdated packages to > overcome the staleness of the config.guess. > It's a mix of both - some packages do not support aarch64, even in their newest version. For those, config.guess is updated.
> > I have experimented with actually running automake again instead of just > copying in a newer config.guess, e.g., invoke automake -a -f, in all > those places where outdated packages won't build. I'm not sure if that's > better or worse, but it does work. > We could have the following inserted at all the critical places in > buildme.sh > > Code: -------------------- > > > if [ "`uname -m`" == "aarch64" ]; then > automake -a -f > fi > -------------------- > > > or > > Code: -------------------- > > > if [ "`uname -m`" == "aarch64" ]; then > cp `dpkg -L automake | grep 'config.guess'` . > fi > -------------------- > > > ad 1: automake doesn't seem to be fully downwards compatible, so there is a risk that it will fail (on my gentoo system, there are 3 versions of automake installed for that reason...) ad 2: will only work on debian-based linux variants SW: extGUI4LMS - new web UI: 'forum' (http://forums.slimdevices.com/showthread.php?98186-Announce-Alternative-Web-Interface-(beta)) / 'homepage' (https://www.nexus0.net/pub/sw/extgui4lms/) | 'LMSlib2go' (http://forums.slimdevices.com/showthread.php?107704-Announce-LMSlib2go-library-information-on-mobile-devices) | 'music visualizer' (http://forums.slimdevices.com/showthread.php?103073-Announce-music-visualizer-for-squeezelite) for squeezelite HowTos: 'build a self-contained LMS' (http://forums.slimdevices.com/showthread.php?99648-Howto-build-a-self-contained-LMS) | 'Ogg Opus support' (http://forums.slimdevices.com/showthread.php?107011-Howto-play-Ogg-Opus-files) | 'Bluetooth with ALSA' (http://forums.slimdevices.com/showthread.php?107230-Howto-Bluetooth-streaming-to-from-LMS-(ALSA-only-no-PulseAudio)) | ' update bundled perl modules' (http://forums.slimdevices.com/showthread.php?107040-Howto-update-perl-modules-bundled-with-LMS) ------------------------------------------------------------------------ Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808 View this thread: http://forums.slimdevices.com/showthread.php?t=108166 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
