Re: perl with cygwin 1.5 doesn't fly.

2003-07-21 Thread Gerrit P. Haase
Hallo George, Am Sonntag, 20. Juli 2003 um 20:17 schriebst du: Check u're perl code again Hey, I try to build perl from sources with the new 64bit Cygwin 1.5 prerelease. All the code that is failing is the perl code from the perl sources which is used to build Perl. Use strict; # that

RE: perl with cygwin 1.5 doesn't fly.

2003-07-21 Thread Matthew O. Persico
On Sun, 20 Jul 2003 14:17:23 -0400, George Njoku wrote: Check u're perl code again Use strict; # that way you must use 'my' to define all scalars My %module = ( 'cygwin'='Cygwin' ); # note 'cygwin' My $var = $module{$^0} || 'Unix' # can't remember what special variable = # $^0 but note that

RE: perl with cygwin 1.5 doesn't fly.

2003-07-20 Thread George Njoku
Check u're perl code again Use strict; # that way you must use 'my' to define all scalars My %module = ( 'cygwin'='Cygwin' ); # note 'cygwin' My $var = $module{$^0} || 'Unix' # can't remember what special variable = # $^0 but note that since %module and # $var are in the same scope you should