You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Paul Sutton <pa...@c2.net> on 1998/03/22 15:21:44 UTC

Shared modules and Rule HIDE

When HIDE is on, LoadModule does not work. This is because the documented
syntax is (say)

 LoadModule access_module modules/mod_access.so

but the internal structure name has been hidden to "AP_access_module". Now
it is easy to make mod_so prepend AP_ to the structure name before
resolving it, but then it won't work for third-party modules whose module
structure names are not mapped in hide.h.

Also of course modules compiled with HIDE=no will not load into Apache
compiled with HIDE=yes, and vice versa. Um.

Paul