Re: [Fink-users] G5, OSX 10.4, and 64bit-cpu

2007-07-19 Thread David R. Morrison
Fixed in fink-0.27.6. Thanks for all the help. -- Dave On Jul 19, 2007, at 8:14 AM, Dominique Dhumieres wrote: > Applying the latest changes, i.e.: > > > # different sysctl variables for intel and ppc > my $is64bit = 0; > if (open(SYSCTL, 'sysctl -a 2>/dev/null |')) { > my (

Re: [Fink-users] Odd issues with Fink-0.8.1-Intel

2007-07-19 Thread Alexander K. Hansen
Enzo wrote: > --- "Alexander K. Hansen" <[EMAIL PROTECTED]> wrote: > > >> Enzo wrote: >> >> >>> I did notice that some of the download mirror >>> >> sites >> >>> didn't work and I had to tell it to try the next >>> >> one >> >>> several times. >>> >>> >>>

Re: [Fink-users] Odd issues with Fink-0.8.1-Intel

2007-07-19 Thread Enzo
--- "Alexander K. Hansen" <[EMAIL PROTECTED]> wrote: > Enzo wrote: > > > I did notice that some of the download mirror > sites > > didn't work and I had to tell it to try the next > one > > several times. > > > > > It would be nice for us to know which ones were > causing problems and a > bi

Re: [Fink-users] G5, OSX 10.4, and 64bit-cpu

2007-07-19 Thread Dominique Dhumieres
Applying the latest changes, i.e.: # different sysctl variables for intel and ppc my $is64bit = 0; if (open(SYSCTL, 'sysctl -a 2>/dev/null |')) { my ($key, $value); while () { ($key, $value) = $_ =~ /^(\S+)\s*\:\s*(.*?)\s*$/; next unless (d

Re: [Fink-users] Odd issues with Fink-0.8.1-Intel

2007-07-19 Thread William Scott
Message: 1 Date: Wed, 18 Jul 2007 12:35:00 -0700 (PDT) From: Enzo <[EMAIL PROTECTED]> Subject: [Fink-users] Odd issues with Fink-0.8.1-Intel To: fink-users@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=iso-8859-1

Re: [Fink-users] G5, OSX 10.4, and 64bit-cpu

2007-07-19 Thread Benjamin Reed
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Martin Costabel wrote: > Yes, but it wouldn't work on intels. Also it kind of defeats the whole > paragraph of code. There was a one-liner there before, but it was > replaced by a supposedly more generally working (but untested) code. Heh, yeah, th

Re: [Fink-users] Java Compiler Exception on running fink selfupdate

2007-07-19 Thread Martin Costabel
Alexander K. Hansen wrote: > kalkin- wrote: >> /bin/sh ../lib/javacomp.sh -d . ./gnu/gettext/DumpResource.java >> An exception has occurred in the compiler (1.5.0_07). [] >> What can I else do, if the java reinstallation don't work? >> -

Re: [Fink-users] Java Compiler Exception on running fink selfupdate

2007-07-19 Thread Alexander K. Hansen
kalkin- wrote: > > Am 19.07.2007 um 04:35 schrieb Alexander K. Hansen: > >> Apple's installer has been known to drop a file here and there. > > I can try to reinstall java, but it's very strange that there is a > file missing on 3 different JDK's! > > What can I else do, if the java reinstallation

Re: [Fink-users] G5, OSX 10.4, and 64bit-cpu

2007-07-19 Thread Dominique Dhumieres
> > works on my system. > Yes, but it wouldn't work on intels. Yes indeed! this was precisely why I wrote "works on my system." The simple addition of the pipe yields hundreds of warning about uninitialized stuff. I have tried unsuccessfully to get rid of them to finally settle to something speci

Re: [Fink-users] Java Compiler Exception on running fink selfupdate

2007-07-19 Thread kalkin-
Am 19.07.2007 um 04:35 schrieb Alexander K. Hansen: Apple's installer has been known to drop a file here and there. I can try to reinstall java, but it's very strange that there is a file missing on 3 different JDK's! What can I else do, if the java reinstallation don't work? PGP.sig De

Re: [Fink-users] G5, OSX 10.4, and 64bit-cpu

2007-07-19 Thread Martin Costabel
Dominique Dhumieres wrote: > Changing 'if (open(SYSCTL, 'sysctl -a')) {' to > > if (open(SYSCTL, 'sysctl -a | grep hw.optional.64bitops |')) { > > works on my system. Yes, but it wouldn't work on intels. Also it kind of defeats the whole paragraph of code. There was a one-liner there before, bu