> "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 Apache binary. > > > > --with-module=filter:/home/rbb/apache_modules/mod_apachecon.c > > dang :) > > Maybe I'll have a crack at the help text for --with-module. > > Thanks!
No problem. There are a few other problems if you want to tackle them. 1) We shouldn't copy the .c file, we should just compile it to the build dir. 2) --with-module doesn't interact well with other modules in the same dir. 3) We can't use multiple --with-module arguments. Ryan