MacOSX::File on Panther

2004-01-12 Thread David Wheeler
Hi All, Following Dan's instructions here: http://www.dan.co.jp/cases/macosx/psync.html I'm still having trouble getting MacOSX::File to compile. Here's what happens: geertz% make CC=gcc2 cp File.pm blib/lib/MacOSX/File.pm cp File/Constants.pm blib/lib/MacOSX/File/Constants.pm

Re: MacOSX::File on Panther

2004-01-12 Thread Alex Robinson
Any suggestions? The patch didn't work for me out of the box either. However, Mike Bombich suggests running 'sudo gcc_select 3' before make test http://www.bombich.com/software/ccc.html I actually did i before the make - but everything seems to be working fine.

Re: MacOSX::File on Panther

2004-01-12 Thread David Wheeler
On Jan 12, 2004, at 1:21 PM, John Delacour wrote: I had not trouble installing once i'd applied the patch. I'm sending you my Terminal log off-list just in case it helps isolate the problem. Thanks. You did the same things as I am, so I'm not sure what the issue is. Thanks, David -- David

Re: MacOSX::File on Panther

2004-01-12 Thread David Wheeler
On Jan 12, 2004, at 1:31 PM, Alex Robinson wrote: The patch didn't work for me out of the box either. However, Mike Bombich suggests running 'sudo gcc_select 3' before make test http://www.bombich.com/software/ccc.html I actually did i before the make - but everything seems to be working

Re: MacOSX::File on Panther

2004-01-12 Thread Chris Nandor
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (David Wheeler) wrote: On Jan 12, 2004, at 1:31 PM, Alex Robinson wrote: The patch didn't work for me out of the box either. However, Mike Bombich suggests running 'sudo gcc_select 3' before make test

Re: MacOSX::File on Panther

2004-01-12 Thread Chris Nandor
Looks like only I_POLL is needed. I added it to common/util.c. Spec.xs had Finder.h first, so it bombed early, so I switched the order of its includes. With this patch, MacOSX::File compiles and passes tests on Panther with gcc 3.3. --- Spec/Spec.xs.orig Mon Jan 12 21:41:58 2004 +++

Re: MacOSX::File on Panther

2003-10-24 Thread Dan Kogai
On Friday, Oct 24, 2003, at 14:58 Asia/Tokyo, [EMAIL PROTECTED] wrote: No, it doesn't work for me. I had tried something similar, but it seems that -U only affects a corresponding -D, but not #define in files. Hmm Right. Okay. It seems like I have to work it out which I will start right

Re: MacOSX::File on Panther

2003-10-24 Thread Edward Moy
On Oct 23, 2003, at 11:20 PM, Dan Kogai wrote: On Friday, Oct 24, 2003, at 14:58 Asia/Tokyo, [EMAIL PROTECTED] wrote: No, it doesn't work for me. I had tried something similar, but it seems that -U only affects a corresponding -D, but not #define in files. Hmm Right. Okay. It seems

MacOSX::File on Panther

2003-10-23 Thread Antoine Quint
Hi there, I've been frantically trying to install MacOSX::File 0.66 on my Panther 7B85 (GM) powerbook. I have XCode 7B85 installed, which. I haven't succeeded in running make. I have attached the Terminal output so you can see what's wrong. Thanks for any tips! MacOSX-File-0.66 / perl

Re: MacOSX::File on Panther

2003-10-23 Thread Antoine Quint
Hi, Yes, this seems to be another case of a Perl define (I_POLL) colliding with a Mac OS X one (in OpenTransportProtocol.h). Panther now has poll() (an emulation actually), so that is why I_POLL is now defined. A quick workaround is to apply the following patch: [snip] This allows it to

Re: MacOSX::File on Panther

2003-10-23 Thread Dan Kogai
Panther users, On Friday, Oct 24, 2003, at 13:41 Asia/Tokyo, Dan Kogai wrote: On Friday, Oct 24, 2003, at 02:42 Asia/Tokyo, [EMAIL PROTECTED] wrote: Yes, this seems to be another case of a Perl define (I_POLL) colliding with a Mac OS X one (in OpenTransportProtocol.h). Panther now has poll()

Re: MacOSX::File on Panther

2003-10-23 Thread emoy
On Oct 23, 2003, at 10:01 PM, Dan Kogai wrote: Panther users, On Friday, Oct 24, 2003, at 13:41 Asia/Tokyo, Dan Kogai wrote: On Friday, Oct 24, 2003, at 02:42 Asia/Tokyo, [EMAIL PROTECTED] wrote: Yes, this seems to be another case of a Perl define (I_POLL) colliding with a Mac OS X one (in