Re: Cron & Progress Bar in OSX

2003-10-15 Thread Alan Fry
At 9:48 am -0600 14/10/03, Doug McNutt wrote: At 00:16 +0100 10/14/03, Alan Fry wrote: do shell script "/Users/alanfry/Desktop/backatcha.pl" results in the error: ...backatcha.pl:perl:bad interpreter:Permission denied do shell script is misnamed as are a lot of other commands in Ap

Re: DBI and DBD::MySQL (Panther)

2003-10-15 Thread Conrad Schilbe
Mike, I was encountering the same errors as you in my quest to install DBD::mysql and discovered that under the following setup: Custom installed Perl 5.8.1 RC3 - No multi-threading ggc 2.95 - via /usr/sbin/gcc_select 2 Removing /sw/lib/perl5/Storable.pm & /sw/lib/perl5/auto/Storable I was abl

Re: DBI and DBD::MySQL (Panther)

2003-10-15 Thread Edward Moy
We recently discovered the DBD::mysql problem as well. The patch is to edit /System/Library/Perl/5.8.1/darwin-thread-multi-2level/Config.pm, replacing: ld='MACOSX_DEPLOYMENT_TARGET=10.3 cc' with ld='env MACOSX_DEPLOYMENT_TARGET=10.3 cc' Unfortunately, this change is too late to get into Pa

Re: DBI and DBD::MySQL (Panther)

2003-10-15 Thread David Wheeler
On Wednesday, October 15, 2003, at 04:58 PM, Edward Moy wrote: We recently discovered the DBD::mysql problem as well. The patch is to edit /System/Library/Perl/5.8.1/darwin-thread-multi-2level/Config.pm, replacing: ld='MACOSX_DEPLOYMENT_TARGET=10.3 cc' with ld='env MACOSX_DEPLOYMENT_TARG

Re: DBI and DBD::MySQL (Panther)

2003-10-15 Thread Edward Moy
In hints/darwin.sh, replace *) ld="MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;; with *) ld="env MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;; Hopefully, this will go into 5.8.2. Ed On Oct 15, 2003, at 5:05 PM, David Wheeler wrote: On Wednesday, October 15, 2003, at 04:58 PM, Edward Moy wrote:

Re: DBI and DBD::MySQL (Panther)

2003-10-15 Thread Conrad Schilbe
Edward, I edited /System/Library/Perl/5.8.1/darwin-thread-multi-2level/Config.pm, switched perl back to the apple install and had no problems building DBD::mysql. Your information is greatly appreciated! c On 10/15/03 5:58 PM, "Edward Moy" <[EMAIL PROTECTED]> wrote: > We recently discovered t

Re: DBI and DBD::MySQL (Panther)

2003-10-15 Thread Conrad Schilbe
I would think this should stay out of the perl sources since it is not a bug of perl's... Thoughts? I also just discovered that this fixes a build problem with Data::Dumper... Or so it would appear. It's possible this will effect several packages. The patch should not be put in all the perl source

Problem with System Beep

2003-10-15 Thread John Park
For some reason I can't hear a system beep. Maybe I'm mistaken, but isn't: print "\a"; suppose to generate a system beep? I'm using Mac OS X v10.2.3 and I remember being able to do this with v10.0.0. Thanks -John

Re: Patch for LWP Makefile.PL

2003-10-15 Thread Gisle Aas
Ken Williams <[EMAIL PROTECTED]> writes: > There's still a flaw with the conflict-detection in LWP's Makefile.PL > that prevents /usr/bin/head from being overwritten by HEAD on Mac OS > X. The problem is that MakeMaker uses $Config{installscript} as the > installation location for EXE_FILES items,