Re: Make test issue with the URI module

2002-02-06 Thread dan

I've read through the previous messages on this topic, and have modified
my blib/lib/Apache/test.pm as did  export PERL_HTTP_URI_CLASS=URI::URL .
Now when I make test I get:

Can't locate URI/URL/_generic.pm in @INC (@INC contains: . ../blib/lib
../blib/arch /usr/lib/perl5/5.6.0/i386-linux /usr/lib/perl5/5.6.0
/usr/lib/perl5/site_perl/5.6.0/i386-linux /usr/lib/perl5/site_perl/5.6.0
/usr/lib/perl5/site_perl ../.) at
/usr/lib/perl5/site_perl/5.6.0/URI/URL.pm line 113.
make: *** [run_tests] Error 2

Any clues? Is my URI::URL screwed up, or do I have problems elsewhere?




Re: Make test issue with the URI module

2002-02-04 Thread Thomas Klausner

Hi!

On Sun, Feb 03, 2002 at 05:24:03PM -0800, Pierre Carette wrote:
 I am trying to install the latest version of Mod_perl (version 1.26) with
 Apache 1.3.23 on RedHat 7.2.
 
 When I tried the make test from the mod_perl installation I had an error
 saying that the module URI couldn't be found. I then downloaded and
 installed the URI module from cpan.org: URI-1.18 and now I get the following
 error:
 
 /usr/bin/perl t/TEST 0
 Can't locate object method new via package URI::URL at
 ../blib/lib/Apache/te
 st.pm line 252.
I ran into the same problem yesterday. I 'solved' it by adding
use URI::URL;
to blib/lib/Apache/test.pm

Does anyone know why this fails or how to fix it properly?

-- 
 D_OMM  +  http://domm.zsi.at -+
 O_xyderkes |   neu:  Arbeitsplatz   |   
 M_echanen  | http://domm.zsi.at/d/d162.html |
 M_asteuei  ++





Re: Make test issue with the URI module

2002-02-04 Thread Ron Savage

Thomas

See below.

Cheers
Ron Savage
[EMAIL PROTECTED]
http://savage.net.au/index.html

  When I tried the make test from the mod_perl installation I had an error
  saying that the module URI couldn't be found. I then downloaded and
  installed the URI module from cpan.org: URI-1.18 and now I get the following
  error:
  
  /usr/bin/perl t/TEST 0
  Can't locate object method new via package URI::URL at
  ../blib/lib/Apache/te
  st.pm line 252.
 I ran into the same problem yesterday. I 'solved' it by adding
 use URI::URL;
 to blib/lib/Apache/test.pm
 
 Does anyone know why this fails or how to fix it properly?

If I recall, years ago the module was called URI::URL, and is now called URI.

_If_ they are method-call compatible, you could change the source from
use URI::URL;
to
use URI;





Re: Make test issue with the URI module

2002-02-04 Thread Rick Myers

On Feb 04, 2002 at 16:24:38 +0100, Thomas Klausner wrote:
 
 Does anyone know why this fails or how to fix it properly?

This question was originally asked back in August.

http://mathforum.org/epigone/modperl/sehpholzhex

With some followup...

http://mathforum.org/epigone/modperl/zhenphimgrand

--rick




Make test issue with the URI module

2002-02-03 Thread Pierre Carette

I am trying to install the latest version of Mod_perl (version 1.26) with
Apache 1.3.23 on RedHat 7.2.

When I tried the make test from the mod_perl installation I had an error
saying that the module URI couldn't be found. I then downloaded and
installed the URI module from cpan.org: URI-1.18 and now I get the following
error:

/usr/bin/perl t/TEST 0
Can't locate object method new via package URI::URL at
../blib/lib/Apache/te
st.pm line 252.

Anything I am doing wrong?

Thanks for you help,

Pierre