Skip to content

Commit

Permalink
Add support for Perl 5.24 on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
mherger committed Nov 20, 2017
1 parent f10471d commit 12c414e
Show file tree
Hide file tree
Showing 27 changed files with 8 additions and 2 deletions.
Binary file added Bin/aarch64-linux/alac
Binary file not shown.
Binary file added Bin/aarch64-linux/flac
Binary file not shown.
Binary file added Bin/aarch64-linux/sox
Binary file not shown.
Binary file added Bin/aarch64-linux/wvunpack
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Index created by AutoSplit for blib/lib/IO/Interface.pm
# (file acts as timestamp)
1;
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
7 changes: 5 additions & 2 deletions Slim/Utils/OS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,12 @@ sub initSearchPath {
elsif ( $class->{osDetails}->{'binArch'} =~ /^arm.*linux/ ) {
$class->{osDetails}->{'binArch'} = 'arm-linux';
}

elsif ( $class->{osDetails}->{'binArch'} =~ /^aarch64-linux/ ) {
$class->{osDetails}->{'binArch'} = 'aarch64-linux';
}

# Reduce PPC to powerpc-linux
if ( $class->{osDetails}->{'binArch'} =~ /^(?:ppc|powerpc).*linux/ ) {
elsif ( $class->{osDetails}->{'binArch'} =~ /^(?:ppc|powerpc).*linux/ ) {
$class->{osDetails}->{'binArch'} = 'powerpc-linux';
}

Expand Down
Binary file added icudt58b.dat
Binary file not shown.
Binary file added icudt58l.dat
Binary file not shown.

0 comments on commit 12c414e

Please sign in to comment.