Here’s an example from the bootstrap script:

my $perlexe  = "/usr/bin/perl"; #default
# override defaults
if ($distribution eq "10.6") {
        $perlexe = "/usr/bin/arch -arch $arch /usr/bin/perl5.10.0";
} elsif (($distribution eq "10.7") or ($distribution eq "10.8")) {
        $perlexe = "/usr/bin/arch -arch $arch /usr/bin/perl5.12";
} elsif ($distribution eq "10.8") {
        $perlexe = "/usr/bin/arch -arch $arch /usr/bin/perl5.16";
} elsif (($arch eq "x86_64") and ($distribution eq "10.5")) {
        $perlexe = "$bsbase/bin/perl5.8.8";
}

There are 2 issues:

1) It’s using perl5.16 for 10.10.
2) Do we *need* the -arch wrappers for 10.7+ at all?  Is there any reason not 
just to use the default?
-- 
Alexander Hansen, Ph.D.
Fink User Liaison


------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111&iu=/4140/ostg.clktrk
_______________________________________________
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.devel
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to