Tk800.024 + perl-5.8.0

2003-01-06 Thread bioinfo Gu
I want install Tk800.024 for perl5.8.0, when I 'make test', there is error: # make test cd pTk && make DEFINE="" PERL_DL_NONLAZY=1 /usr/bin/perl5.8.0 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/ Require.t t/Trace.t t/X.t t/autoload.t t/balloon.t t/browseentry.t t

perl-5.8.0 and Tk800.24v make test failure

2003-01-06 Thread bioinfo Gu
Hello, I want install Tk800.024 for perl5.8.0, when I 'make test', there is error: # make test cd pTk && make DEFINE="" PERL_DL_NONLAZY=1 /usr/bin/perl5.8.0 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/ Require.t t/Trace.t t/X.t t/autoload.t t/balloon.t t/browseen

DBIx::HTMLView module

2002-10-24 Thread bioinfo Gu
Hi, I am install DBIx::HTMLView module on perl-5.6.1 when I 'make test': PERL_DL_NONLAZY=1 /usr/bin/perl5.6.1 -Iblib/arch -Iblib/lib -I/compbio/programs/perl-5.6.1/lib/5.6.1/alpha-dec_osf -I/co mpbio/programs/perl-5.6.1/lib/5.6.1 test.pl Compilation 1..1 ok 1 NOTE: Those test are done against

pattern matching

2002-10-25 Thread bioinfo Gu
Hello, I want to input a string which is used to create file name on unix. and I want to allow input string to consist of letters(A-Z, or a-z) and numbers(0-9) and underscroe( _ ) within file name. Does anoybody know how to check the input string legal or not? $input = "some string here"; if

Re: pattern matching

2002-10-30 Thread bioinfo Gu
Hi Jonathan, Thank you very much for your reply. I check your script, it did not work: for example: Suppose I give the string "abc", "abc123" "123" "abc_123" "abc.123": The string "abc", "abc123", "123", "abc-123" should be legal, but the "abc.123" should be NOT legal. I am using perl script