ColinB wrote:
I am compiling mod_perl 2.0 on Solaris 9.

When I run "make test" for mod_perl 2.0 it fails almost immediately
with

file vhost.c, line 232, assertion "rv == APR_SUCCESS" failed

after it calls apr_sockaddr_info_get() with the hostname
"255.255.255.255". I think this may have something to do with the
test's http.conf containing _default_ virtual hostnames.

apr_sockaddr_info_get() eventually calls getaddrinfo() with the
nodename "255.255.255.255" which returns EAI_NONAME (no address
associated with nodename).

But if I call getaddrinfo() for 255.255.255.255 from another machine
(which is running Solaris 8 although this may be unrelated), it returns
0.

Is there something wrong with the configuration of my Solaris 9 machine
- should getaddrinfo() always return 0 for 255.255.255.255 ?

What happens if you add a simple vhost to your httpd.conf without even using mod_perl. I bet that this is an apache issue.


__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com



Reply via email to