> Can you point me to where you actually force 10.x to use the dated
> 5.*18*? Unless it's not in a perl script etc. and you excluded this when
> you compiled the binary.
It's in the executable file's header:
% head
/Library/PreferencePanes/Squeezebox.prefPane/Contents/server/slimserver.pl
#!/Library/PreferencePanes/Squeezebox.prefPane/Contents/perl/bin/perl
you can replace this with
#!/usr/bin/perl5.18
Or simply run
% /Library/PreferencePanes/Squeezebox.prefPane/Contents/perl/bin/perl
/Library/PreferencePanes/Squeezebox.prefPane/Contents/server/slimserver.pl
on the command line when you want to try "our" Perl temporarily. This
allows you to easily switch between the Perl versions for testing purposes.
> 5.*18*? Unless it's not in a perl script etc. and you excluded this when
> you compiled the binary.
It's in the executable file's header:
% head
/Library/PreferencePanes/Squeezebox.prefPane/Contents/server/slimserver.pl
#!/Library/PreferencePanes/Squeezebox.prefPane/Contents/perl/bin/perl
you can replace this with
#!/usr/bin/perl5.18
Or simply run
% /Library/PreferencePanes/Squeezebox.prefPane/Contents/perl/bin/perl
/Library/PreferencePanes/Squeezebox.prefPane/Contents/server/slimserver.pl
on the command line when you want to try "our" Perl temporarily. This
allows you to easily switch between the Perl versions for testing purposes.
Comment