Sam Carleton wrote:
> 
> I was simply thinking that if I could statically link apache and php
> so that there was simply one executable, it would make packaging and
> distribution simpler for me.  I could be wrong;)

What you save in having one binary is mitigated by the fact that pushing
out one small fix (say, a serious flaw in a specific module) goes from
a small update to the entire binary.

>From the Apache httpd side, see os/win32/modules.c for the static module
list, and add all the sources for all your desired modules (mod_alias,
mod_auth etc are probably modules you also need).  You can compile all
the sources from libhttpd, mod_FOO, etc and set httpd.dsp to depend
upon apr and aprutil instead of libapr and libaprutil.  You won't be
able to do loadable libiconv modules, but I doubt you are using those
features.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to