Re: GD Install Failure (was: Re: elsif issues ....still)

2004-03-29 Thread Wiggins d'Anconia
Allen Wang wrote: -Original Message- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 6:11 PM To: Allen Wang Cc: [EMAIL PROTECTED] Subject: Re: GD Install Failure (was: Re: elsif issues still) Please bottom post... Allen Wang wrote: The first

RE: GD Install Failure (was: Re: elsif issues ....still)

2004-03-29 Thread Allen Wang
-Original Message- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 6:11 PM To: Allen Wang Cc: [EMAIL PROTECTED] Subject: Re: GD Install Failure (was: Re: elsif issues still) Please bottom post... Allen Wang wrote: > > The first error mes

Re: GD Install Failure (was: Re: elsif issues ....still)

2004-03-26 Thread Wiggins d'Anconia
Please bottom post... Allen Wang wrote: The first error message should be " Warning: prerequisite GD failed to load: Can't load '/opt/perl5/lib/site_perl/5.6.0/PA-RISC2.0/auto/GD/GD.sl' for module GD: No such file or directory at /opt/perl5/lib/5.6.0/PA-RISC2.0/DynaLoader.pm line 200. at

RE: GD Install Failure (was: Re: elsif issues ....still)

2004-03-26 Thread Allen Wang
riginal Message- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 4:13 PM To: Allen Wang Cc: [EMAIL PROTECTED] Subject: GD Install Failure (was: Re: elsif issues still) Please start a new thread when posting (and bottom post when replying)... Allen Wang

GD Install Failure (was: Re: elsif issues ....still)

2004-03-26 Thread Wiggins d'Anconia
Please start a new thread when posting (and bottom post when replying)... Allen Wang wrote: When I was trying to install GDGraph-1.43 It failed due to the following message " Warning: prerequisite GD failed to load: Can't load '/opt/perl5/lib/site_perl/5.6.0/PA-RISC2.0/auto/GD/GD.sl' for module G

RE: elsif issues ....still

2004-03-26 Thread Allen Wang
Sent: Thursday, August 21, 2003 8:34 PM To: 'Catriona Wordsworth'; [EMAIL PROTECTED] Subject: RE: elsif issues still Someone correct me if I am wrong, the numbers in quotes are being read as strings and not numbers, or numbers not strings. The == works with numbers, and the quotes ar

Re: elsif issues ....still

2003-08-22 Thread zsdc
Octavian Rasnita wrote: Yes, it should be used ... == 1 without quoting the numbers. It doesn't really matter: #!/usr/bin/perl -wl die unless 3 == "3" and 1 != "3" and 2 eq "2" and 3 ne "1" and 5 eq 5 and "6" == "6"; print "OK"; __END__ -zsdc. -- To unsubscribe, e-mail: [E

Re: elsif issues ....still

2003-08-21 Thread Octavian Rasnita
ent: Friday, August 22, 2003 6:34 AM Subject: RE: elsif issues still Someone correct me if I am wrong, the numbers in quotes are being read as strings and not numbers, or numbers not strings. The == works with numbers, and the quotes are for strings. I think that the way you have it set up, the

RE: elsif issues ....still

2003-08-21 Thread Lile, James AZ2 (VAW-115)
ED] Subject: Re: elsif issues still Lile, James AZ2 (VAW-115) wrote: > Someone correct me if I am wrong, the numbers in quotes are being read as > strings and not numbers, or numbers not strings. > The == works with numbers, and the quotes are for strings. I think that the >

Re: elsif issues ....still

2003-08-21 Thread zsdc
Lile, James AZ2 (VAW-115) wrote: Someone correct me if I am wrong, the numbers in quotes are being read as strings and not numbers, or numbers not strings. The == works with numbers, and the quotes are for strings. I think that the way you have it set up, the number one is returning true when the

RE: elsif issues ....still

2003-08-21 Thread Lile, James AZ2 (VAW-115)
Someone correct me if I am wrong, the numbers in quotes are being read as strings and not numbers, or numbers not strings. The == works with numbers, and the quotes are for strings. I think that the way you have it set up, the number one is returning true when the $variable is defined. respectfull

Re: elsif issues ....still

2003-08-21 Thread zsdc
Catriona Wordsworth wrote: trying to get the following code to print each line where relevant > but it only prints the first statement "yes its one!" even if the > $variable is "5" Are you sure that your $variable is really what you think it is? Maybe some other part of your code is chan