Re: what is best way to statically link a multi-file module w/ httpd?

2002-02-11 Thread Jeff Trawick
Ryan Bloom [EMAIL PROTECTED] writes: On 11 Feb 2002, Jeff Trawick wrote: Suppose I have mod_fubar.c and a couple of other .c files... What is the recommended way to statically link them into httpd? Put them in modules/something and create config.m4 and Makefile.in? Use some

RE: what is best way to statically link a multi-file module w/ httpd?

2002-02-11 Thread Ryan Bloom
--with-module takes two arguments with a ':' separating them. The first argument is the module type, so that the configure script knows where to copy the file. The second is the file to copy. So, the following will add mod_apachecon.c to my Apache binary.

RE: what is best way to statically link a multi-file module w/ httpd?

2002-02-11 Thread Ryan Bloom
Ryan Bloom [EMAIL PROTECTED] writes: --with-module takes two arguments with a ':' separating them. The first argument is the module type, so that the configure script knows where to copy the file. The second is the file to copy. So, the following will add mod_apachecon.c to my

RE: what is best way to statically link a multi-file module w/ httpd?

2002-02-11 Thread Ryan Bloom
Ryan Bloom [EMAIL PROTECTED] writes: --with-module takes two arguments with a ':' separating them. The first argument is the module type, so that the configure script knows where to copy the file. The second is the file to copy. So, the following will add mod_apachecon.c to