Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

NuPowerbook

macrumors member
Original poster
Jan 17, 2004
51
0
Does anyone know how to make fink Tiger compatible? When I go to use it it complains about the new versions of Perl and GCC.
 
solaris said:
Strange, cause Fink 0.7.1 is working fine here.
What are the exact error message(s) you get and when do you get it?
Did you erase and install when you installed Tiger or simply upgrade? I am trying to do a brand new install, and on both of my machines, when I download the source release of fink, then go to install it, I get complaints about perl and GCC. THe Binary release does work, I confirmed that, but I want the source release.
 
I haven't tried this, cause I decided to just do a binary install, but you'll need to edit bootstrap.pl find where it says:

Code:
# acceptible perl versions: "$] value" => "human-readible version string"
my %ok_perl_versions = (
    "5.006"    => "5.6.0",
    "5.006001" => "5.6.1",
    "5.008"    => "5.8.0",
    "5.008001" => "5.8.1",
    "5.008002" => "5.8.2",
    "5.008004" => "5.8.4"
);

and add "5.008006" => "5.8.6"

so it'll look like:

Code:
# acceptible perl versions: "$] value" => "human-readible version string"
my %ok_perl_versions = (
    "5.006"    => "5.6.0",
    "5.006001" => "5.6.1",
    "5.008"    => "5.8.0",
    "5.008001" => "5.8.1",
    "5.008002" => "5.8.2",
    "5.008004" => "5.8.4",
    "5.008006" => "5.8.6"
);
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.