You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2001/07/01 23:09:41 UTC

cvs commit: httpd-2.0 STATUS

rbb         01/07/01 14:09:41

  Modified:    .        STATUS
  Log:
  It's very sunny outside, but I'm stuck inside stripping paint off windows
  :-(
  
  Just removing some status items that have been done for a long time.
  
  Revision  Changes    Path
  1.250     +1 -15     httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.249
  retrieving revision 1.250
  diff -u -d -b -w -u -r1.249 -r1.250
  --- STATUS	2001/06/28 05:15:01	1.249
  +++ STATUS	2001/07/01 21:09:40	1.250
  @@ -1,5 +1,5 @@
   APACHE 2.0 STATUS:						-*-text-*-
  -Last modified at [$Date: 2001/06/28 05:15:01 $]
  +Last modified at [$Date: 2001/07/01 21:09:40 $]
   
   Release:
   
  @@ -162,16 +162,6 @@
   	    installed and a "make clean" in aprutil would make Apache
   	    fail to load.
   
  -    * users who want to install third-party modules into the Apache
  -      source tree (for static linking) need to have autoconf and
  -      libtool installed. This is because the module needs to have its
  -      config.m4 incorporated into ./configure, which means "buildconf"
  -      must be run.
  -      Note: This is in part because we have removed the "extra" directory.
  -            In the Apache-2.0 repository, this directory had a config.m4
  -            file that allowed people to add external modules by
  -            specifying --with-module on the configure line.
  -
       * ap_vrprintf() needs to handle more than 4K
           Status: Greg volunteers
   
  @@ -249,10 +239,6 @@
         what we do right now just doesn't seem to fully fit into how autoconf
         works, eg. AC_PREFIX_DEFAULT issues.
           Message-ID: <Pi...@alive.znep.com>
  -
  -    * All of our MPMs should use APR for threads/processes.  This 
  -      will allow us to error out if a threaded MPM is chosen on a
  -      platform that doesn't support threads.
   
       * Combine log_child and piped_log_spawn. Clean up http_log.c.
         Common logging API.
  
  
  

Re: cvs commit: httpd-2.0 STATUS

Posted by rb...@covalent.net.
On Sun, 1 Jul 2001, Justin Erenkrantz wrote:

> On Sun, Jul 01, 2001 at 09:09:41PM -0000, rbb@apache.org wrote:
> >   -    * users who want to install third-party modules into the Apache
> >   -      source tree (for static linking) need to have autoconf and
> >   -      libtool installed. This is because the module needs to have its
> >   -      config.m4 incorporated into ./configure, which means "buildconf"
> >   -      must be run.
> >   -      Note: This is in part because we have removed the "extra" directory.
> >   -            In the Apache-2.0 repository, this directory had a config.m4
> >   -            file that allowed people to add external modules by
> >   -            specifying --with-module on the configure line.
> >   -
>
> Pardon my ignorance, but how do you add a module to a static build
> without forcing a buildconf run?  -- justin

--with-module type:location

type is the type of module, aaa, filter, generator, etc.
location is the location of the .c file.

The exact autoconf code can be found in modules/config5.m4.  I wrote this
just after the last ApacheCon.

Ryan

_____________________________________________________________________________
Ryan Bloom                        	rbb@apache.org
Covalent Technologies			rbb@covalent.net
-----------------------------------------------------------------------------


Re: cvs commit: httpd-2.0 STATUS

Posted by Justin Erenkrantz <je...@ebuilt.com>.
On Sun, Jul 01, 2001 at 09:09:41PM -0000, rbb@apache.org wrote:
>   -    * users who want to install third-party modules into the Apache
>   -      source tree (for static linking) need to have autoconf and
>   -      libtool installed. This is because the module needs to have its
>   -      config.m4 incorporated into ./configure, which means "buildconf"
>   -      must be run.
>   -      Note: This is in part because we have removed the "extra" directory.
>   -            In the Apache-2.0 repository, this directory had a config.m4
>   -            file that allowed people to add external modules by
>   -            specifying --with-module on the configure line.
>   -

Pardon my ignorance, but how do you add a module to a static build 
without forcing a buildconf run?  -- justin