Commit b95c261a authored by Jeff Trawick's avatar Jeff Trawick
Browse files

more module build cleanup, removing warnings and some

link errors (from when apr_ ctype macros weren't available)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88070 13f79535-47bb-0310-9956-ffa450edef68
parent e5ef8c28
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
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:

@@ -178,6 +178,8 @@ RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:

    * 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':

+3 −0
Original line number Diff line number Diff line
@@ -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
+2 −0
Original line number Diff line number Diff line
@@ -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"
+2 −0
Original line number Diff line number Diff line
@@ -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)
+3 −0
Original line number Diff line number Diff line
@@ -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>
Loading