Re: Enabling sendmail on 10.1.5

2002-11-02 Thread David Wheeler
On Friday, November 1, 2002, at 07:10 PM, Ken Williams wrote: I hadn't seen these instructions posted before on this list, so I thought I'd send them along. Works great for me. Quite well-explained too, in the spirit of David Wheeler's recipes. "Enabling Sendmail" http://cerebus.san

Re: -d

2002-11-02 Thread Ken Williams
On Saturday, November 2, 2002, at 10:07 PM, John Delacour wrote: If I do this... #!/usr/bin/perl $dir = "$ENV{HOME}/"; opendir DIR, $dir ; for (readdir DIR) { -d and print "$dir$_$/" } I aim to get all the files in my home directory that are directories, but the result is a list of onl

Re: How do you install modules in OS X?

2002-11-02 Thread Ken Williams
On Saturday, November 2, 2002, at 03:02 PM, Vic Norton wrote: So here is the answer to your homework exercise. There is exactly one nonsquare multiple of 4 less than or equal to 10,000,000 that is not the sum of a square and a prime. That nonsquare multiple of 4 is 3,676. Note that all small

Re: problem with gd (dyld: perl Undefined symbols: )

2002-11-02 Thread Puneet Kishor
Hi, Thanks, but I was able build gd 1.8.4 (and libpng and libjpeg) correctly following Scott Anguish's instructions on stepwise.com (see http://www.stepwise.com/Articles/Workbench/2001-06-12.01.html). The reason I think the instructions I followed are cool is because everything worked in 10.1.

Re: problem with gd (dyld: perl Undefined symbols: )

2002-11-02 Thread rich allen
i used these instruction to get gd working,( taken from homepage.mac.com/xports which is now an invalid link) to install png.lib -- Library: png Version: 1.0.8 Author: Coming Soon. Description: Coming Soon. Source: the exact URL coming soon Porter: Randal Cox Status:  Successfu

problem with gd (dyld: perl Undefined symbols: )

2002-11-02 Thread Puneet Kishor
Folks, I am proceeding nowhere, and I am hoping someone on this list can point me toward a solution. I have gd 1.8.4 installed and Apple's stock perl 5.6.0. Everytime I run this one perl program that uses gd, I get the following error -- dyld: perl Undefined symbols: _gdFontGiant _

ImageMagick, PerlMagick, and OSX web server

2002-11-02 Thread Ned Dupont (RR)
I am pulling my hair out over this damn ImageMagick, PerlMagick thing. All I want to do is create a web site, on OSX, that can do all the cool crap that I have seen ImageMagick do through a web browser (using Perl of course). The problem is... I CAN"T GET IT TO WORK! I have used fink to install Ima

Re: -d

2002-11-02 Thread Jeff Lowrey
If I do this... #!/usr/bin/perl $dir = "$ENV{HOME}/"; opendir DIR, $dir ; for (readdir DIR) { -d and print "$dir$_$/" } I aim to get all the files in my home directory that are directories, but the result is a list of only a few of the existing directories: It works for me. Are you sure

Re: -d

2002-11-02 Thread Dave Gomez
here is a code example using find:file, note it is recursive, and will work with where you are sitting, or a passed argument of start point including ~ Dave Gomez #!/usr/bin/perl -lw # fdirs - find all directories @ARGV = qw(.) unless @ARGV; use File::Find (); sub find(&@) { &File::Find::find }

-d

2002-11-02 Thread John Delacour
If I do this... #!/usr/bin/perl $dir = "$ENV{HOME}/"; opendir DIR, $dir ; for (readdir DIR) { -d and print "$dir$_$/" } I aim to get all the files in my home directory that are directories, but the result is a list of only a few of the existing directories: /Users/jd/. /Users/jd/.. /User