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...@locus.apache.org on 2000/12/22 22:34:10 UTC

cvs commit: httpd-2.0/modules/aaa config.m4

rbb         00/12/22 13:34:10

  Modified:    modules/aaa config.m4
  Log:
  Allow the auth modules to load into the server.
  
  Revision  Changes    Path
  1.37      +4 -4      httpd-2.0/modules/aaa/config.m4
  
  Index: config.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/config.m4,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- config.m4	2000/12/07 10:39:49	1.36
  +++ config.m4	2000/12/22 21:34:09	1.37
  @@ -6,15 +6,15 @@
   
   APACHE_MODULE(access, host-based access control, , , yes)
   APACHE_MODULE(auth, user-based access control, , , yes)
  -APACHE_MODULE(auth_anon, anonymous user access, , , no)
  -APACHE_MODULE(auth_dbm, DBM-based access databases, , , no)
  +APACHE_MODULE(auth_anon, anonymous user access, , anon_auth, no)
  +APACHE_MODULE(auth_dbm, DBM-based access databases, , dbm_auth, no)
   
  -APACHE_MODULE(auth_db, DB-based access databases, , , no, [
  +APACHE_MODULE(auth_db, DB-based access databases, , db_auth, no, [
     AC_CHECK_HEADERS(db.h)
     AC_CHECK_LIB(db,main)
   ]) 
   
  -APACHE_MODULE(auth_digest, digests, , , no)
  +APACHE_MODULE(auth_digest, digests, , digest_auth, no)
   
   LTFLAGS="$LTFLAGS -export-dynamic"
   
  
  
  

Re: cvs commit: httpd-2.0/modules/aaa config.m4

Posted by Greg Stein <gs...@lyra.org>.
This is caused by that massive rename you did.

So if the rename broke the loading, then what *did* it do? It was something
about "the modules are broken in our new system", but I must have missed
your answer about what exactly was broken. (?? I think you mentioned it, but
I gotta go search my mail)

I'd say that we back out those changes and this one, and leave them where
they were. And fix whatever was broken in the first place.

Cheers,
-g

On Fri, Dec 22, 2000 at 09:34:10PM -0000, rbb@locus.apache.org wrote:
> rbb         00/12/22 13:34:10
> 
>   Modified:    modules/aaa config.m4
>   Log:
>   Allow the auth modules to load into the server.
>   
>   Revision  Changes    Path
>   1.37      +4 -4      httpd-2.0/modules/aaa/config.m4
>   
>   Index: config.m4
>   ===================================================================
>   RCS file: /home/cvs/httpd-2.0/modules/aaa/config.m4,v
>   retrieving revision 1.36
>   retrieving revision 1.37
>   diff -u -r1.36 -r1.37
>   --- config.m4	2000/12/07 10:39:49	1.36
>   +++ config.m4	2000/12/22 21:34:09	1.37
>   @@ -6,15 +6,15 @@
>    
>    APACHE_MODULE(access, host-based access control, , , yes)
>    APACHE_MODULE(auth, user-based access control, , , yes)
>   -APACHE_MODULE(auth_anon, anonymous user access, , , no)
>   -APACHE_MODULE(auth_dbm, DBM-based access databases, , , no)
>   +APACHE_MODULE(auth_anon, anonymous user access, , anon_auth, no)
>   +APACHE_MODULE(auth_dbm, DBM-based access databases, , dbm_auth, no)
>    
>   -APACHE_MODULE(auth_db, DB-based access databases, , , no, [
>   +APACHE_MODULE(auth_db, DB-based access databases, , db_auth, no, [
>      AC_CHECK_HEADERS(db.h)
>      AC_CHECK_LIB(db,main)
>    ]) 
>    
>   -APACHE_MODULE(auth_digest, digests, , , no)
>   +APACHE_MODULE(auth_digest, digests, , digest_auth, no)
>    
>    LTFLAGS="$LTFLAGS -export-dynamic"
>    
>   
>   
>   

-- 
Greg Stein, http://www.lyra.org/