OpenDirectory refuses to add admin acct to LDAP

2004-01-12 Thread Randall Perry
Did an upgrade from 10.2.6 to 10.3.2 on an Xserve. During upgrade, kept server as Standalone. Tried switching to OpenDirectory. It worked, but if I look under users in the LDAP dir my admin account authentication info I added when switching to OD (UID 501) isn't there. If I enable showing system

Re: confusing bulltes

2004-01-12 Thread Chris Devers
On Sun, 11 Jan 2004, Oliver Schnarchendorf wrote: Okay... I think the problem here is that BBEdit doesn't use your Environmental variables. You can print them with the following one liner perl -e 'use Data::Dumper; print Dumper (\%ENV);' Do yourself a favor and put the above perl

Re: confusing bulltes

2004-01-12 Thread Oliver Schnarchendorf
On Mon, 12 Jan 2004 09:38:09 -0500 (EST), Chris Devers wrote: On Sun, 11 Jan 2004, Oliver Schnarchendorf wrote: perl -e 'use Data::Dumper; print Dumper (\%ENV);' Maybe I'm being naive, but in what way is this better than just using plain old /usr/bin/env? It was a perl question... not a

Re: Getting a 'Save As' dialog box

2004-01-12 Thread Chris Nandor
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Rick Measham) wrote: I need some help with a perl on OS-X problem. I need to pop up a 'Save As' dialog. Basically the same as the one AppleScript gives you when you: choose file name with prompt Select a location to save this file

Mac:: speed (was: Getting a 'Save As' dialog box)

2004-01-12 Thread Chris Nandor
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (John Delacour) wrote: At 2:51 pm +1100 12/1/04, Rick Measham wrote: So next I used CPAN module Mac::AppleScript and I don't get any reply at all: RunAppleScript(qq(choose file name with prompt test1 default name test2)); I think all

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: Mac:: speed (was: Getting a 'Save As' dialog box)

2004-01-12 Thread John Delacour
At 10:55 am -0800 12/1/04, Chris Nandor wrote: The script I just posted took 3.263 seconds, including hitting Cancel to make the dialog box go away, on a PowerBook G4/867 running Panther. Total user/sys time was 1.39 seconds. Pain is highly dependent on your system specifics and pain

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: Mac:: speed (was: Getting a 'Save As' dialog box)

2004-01-12 Thread Chris Nandor
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (John Delacour) wrote: I have exactly the same set-up. The only difference seems to be my pain threshold :-) Yes, that whole extra second Mac::Glue takes over osascript can be annoying. I am only being half-facetious, I know it can be,

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 +++