David Campion ([EMAIL PROTECTED]) said something to this effect on 04/25/2001:
> I am trying to install mod perl on the Apple OS X Server platform.
>
> I can compile the code OK, both as static and as a DSO but when I try to
> restart the apache server, I get all sorts of errors.
>
> example :
>
> dyld: /usr/sbin/httpd multiple definitions of symbol _vhost_alias_module
> /System/Library/Apache/Modules/mod_vhost_alias.so definition of
> _vhost_alias_module
> /System/Library/Apache/Modules/mod_vhost_alias.so definition of
> _vhost_alias_module
>
> this was built as a DSO with all options enabled, if I don't load this
> module it just complains about the next one in the list.
>
> Any help, pointers, kick in the right direction would be very much
> appreciated.
Did you put ClearModuleList before the AddModule lines?
<URL:http://httpd.apache.org/docs/mod/core.html#clearmodulelist>
ClearModuleList directive
Syntax: ClearModuleList
Context: server config
Status: core
Compatibility: ClearModuleList is only available in Apache 1.2
and later
The server comes with a built-in list of active modules. This
directive clears the list. It is assumed that the list will then
be re-populated using the AddModule directive
(darren)
--
Premature optimization is the root of all evil in programming.
-- C.A.R. Hoare