You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2001/02/10 23:21:23 UTC

cvs commit: httpd-2.0/modules/metadata mod_mime_magic.c mod_unique_id.c

trawick     01/02/10 14:21:23

  Modified:    .        STATUS
               modules/generators mod_status.c
               modules/aaa mod_auth_db.c mod_auth_dbm.c
               modules/metadata mod_mime_magic.c mod_unique_id.c
  Log:
  more module build cleanup, removing warnings and some
  link errors (from when apr_ ctype macros weren't available)
  
  Revision  Changes    Path
  1.198     +3 -1      httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.197
  retrieving revision 1.198
  diff -u -r1.197 -r1.198
  --- STATUS	2001/02/10 00:33:36	1.197
  +++ STATUS	2001/02/10 22:21:22	1.198
  @@ -1,5 +1,5 @@
   APACHE 2.0 STATUS:						-*-text-*-
  -Last modified at [$Date: 2001/02/10 00:33:36 $]
  +Last modified at [$Date: 2001/02/10 22:21:22 $]
   
   Release:
   
  @@ -177,6 +177,8 @@
         building Apache modules).
   
       * shift stuff to mod_core.h
  +
  +    * APR-ize resolver stuff in mod_unique_id (Jeff volunteers)
   
   PRs that have been suspended forever waiting for someone to
   put them into 'the next release':
  
  
  
  1.25      +2 -0      httpd-2.0/modules/generators/mod_status.c
  
  Index: mod_status.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/generators/mod_status.c,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- mod_status.c	2001/02/08 13:16:00	1.24
  +++ mod_status.c	2001/02/10 22:21:22	1.25
  @@ -109,6 +109,8 @@
   #if APR_HAVE_UNISTD_H
   #include <unistd.h>
   #endif
  +#define APR_WANT_STRFUNC
  +#include "apr_want.h"
   
   #ifdef NEXT
   #if (NX_CURRENT_COMPILER_RELEASE == 410)
  
  
  
  1.25      +3 -0      httpd-2.0/modules/aaa/mod_auth_db.c
  
  Index: mod_auth_db.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_auth_db.c,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- mod_auth_db.c	2001/02/08 07:43:58	1.24
  +++ mod_auth_db.c	2001/02/10 22:21:22	1.25
  @@ -100,6 +100,9 @@
   #include "http_log.h"
   #include "http_protocol.h"
   #include "http_request.h"  /* for ap_hook_(check_user_id | auth_check) */
  +#include "apr_lib.h"
  +#define APR_WANT_STRFUNC
  +#include "apr_want.h"
   #ifdef HAVE_DB_H
   #include <db.h>
   #endif
  
  
  
  1.28      +2 -0      httpd-2.0/modules/aaa/mod_auth_dbm.c
  
  Index: mod_auth_dbm.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_auth_dbm.c,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- mod_auth_dbm.c	2001/02/10 21:59:58	1.27
  +++ mod_auth_dbm.c	2001/02/10 22:21:22	1.28
  @@ -77,6 +77,8 @@
   #include "http_protocol.h"
   #include "http_request.h"   /* for ap_hook_(check_user_id | auth_checker)*/
   #include "apr_lib.h"
  +#define APR_WANT_STRFUNC
  +#include "apr_want.h"
   
   #if defined(AP_AUTH_DBM_USE_APR)
   #include "apr_dbm.h"
  
  
  
  1.41      +3 -0      httpd-2.0/modules/metadata/mod_mime_magic.c
  
  Index: mod_mime_magic.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/metadata/mod_mime_magic.c,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- mod_mime_magic.c	2001/02/10 14:04:20	1.40
  +++ mod_mime_magic.c	2001/02/10 22:21:22	1.41
  @@ -126,6 +126,9 @@
   
   #include "apr.h"
   #include "apr_strings.h"
  +#include "apr_lib.h"
  +#define APR_WANT_STRFUNC
  +#include "apr_want.h"
   
   #if APR_HAVE_UNISTD_H
   #include <unistd.h>
  
  
  
  1.26      +9 -0      httpd-2.0/modules/metadata/mod_unique_id.c
  
  Index: mod_unique_id.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/metadata/mod_unique_id.c,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- mod_unique_id.c	2001/02/10 14:04:20	1.25
  +++ mod_unique_id.c	2001/02/10 22:21:23	1.26
  @@ -70,6 +70,15 @@
   #include "http_log.h"
   #include "http_protocol.h"  /* for ap_hook_post_read_request */
   
  +#if APR_HAVE_NETDB_H
  +#include <netdb.h>
  +#endif
  +#if APR_HAVE_ARPA_INET_H
  +#include <arpa/inet.h>
  +#endif
  +#if APR_HAVE_UNISTD_H
  +#include <unistd.h>
  +#endif
   
   typedef struct {
       unsigned int stamp;
  
  
  

Re: cvs commit: httpd-2.0/modules/metadata mod_mime_magic.c mod_unique_id.c

Posted by Greg Stein <gs...@lyra.org>.
On Sat, Feb 10, 2001 at 10:21:23PM -0000, trawick@apache.org wrote:
> trawick     01/02/10 14:21:23
> 
>   Modified:    .        STATUS
>                modules/generators mod_status.c
>                modules/aaa mod_auth_db.c mod_auth_dbm.c
>                modules/metadata mod_mime_magic.c mod_unique_id.c
>   Log:
>   more module build cleanup, removing warnings and some
>   link errors (from when apr_ ctype macros weren't available)

Thanks, Jeff.


Cheers,
-g

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