I am running my Squeezebox Server software on an old Mac Mini (2,1)
running Snow Leopard (OSX 10.6.8), and it doesn't like the precompiled
helper binaries in ShairTunes2.  I was able to get it to work on my
system by compiling my own version of the helper for x86 (I will try to
attach) and making the following changes in the Utils.pm file.

Original:
elsif ( $Config{'archname'} =~ /darwin/ ) {
$shairtunes_helper = $directory .
"helperBinaries/shairport_helper-x64-osx";
}


New:
elsif ( $Config{'archname'} =~ /darwin/ ) {
if ($Config{archname64}) {
$shairtunes_helper = $directory .
"helperBinaries/shairport_helper-x64-osx";
} 
else {
$shairtunes_helper = $directory .
"helperBinaries/shairport_helper-x86-osx";
}
}


+-------------------------------------------------------------------+
|Filename: shairport_helper-x86-osx.zip                             |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=18219|
+-------------------------------------------------------------------+

------------------------------------------------------------------------
djsecrist's Profile: http://forums.slimdevices.com/member.php?userid=62134
View this thread: http://forums.slimdevices.com/showthread.php?t=100379

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to