1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Move all APR functions related to strings to their own directory, and

create a new header for those functions.  This is the first step to
removing the apr/lib directory completely, and moving those files/functions
to descriptive directories.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85867 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Bloom
2000-07-21 19:50:58 +00:00
parent 71afb1fe1c
commit 22d9fbdec0
37 changed files with 37 additions and 0 deletions

View File

@@ -63,6 +63,7 @@
*
*/
#include "apr_strings.h"
#include "apr_network_io.h"
#include "ap_config.h"
#include "httpd.h"

View File

@@ -71,6 +71,7 @@
*/
#include "ap_config.h"
#include "apr_strings.h"
#include "apr_md5.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -87,6 +87,7 @@
#endif
#include "modules/perl/mod_perl.h"
#else
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -56,6 +56,7 @@
* University of Illinois, Urbana-Champaign.
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -66,6 +66,7 @@
*
* Version sort added by Martin Pool <mbp@humbug.org.au>. */
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -71,6 +71,7 @@
#define CORE_PRIVATE
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -74,6 +74,7 @@
#define CORE_PRIVATE
#include "apr_lib.h"
#include "apr_strings.h"
#include "apr_general.h"
#include "apr_file_io.h"
#include "apr_portable.h"

View File

@@ -58,6 +58,7 @@
#define CORE_PRIVATE
#include "ap_config.h"
#include "apr_strings.h"
#include "apr_lib.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -65,6 +65,7 @@
#define CORE_PRIVATE
#include "ap_config.h"
#include "apr_strings.h"
#include "httpd.h"
#include "http_config.h"
#include "http_core.h"

View File

@@ -76,6 +76,7 @@
#include "http_log.h"
#include "http_main.h"
#include "util_charset.h"
#include "apr_strings.h"
#include "apr_file_io.h"
#include "apr_fnmatch.h"

View File

@@ -65,6 +65,7 @@
#define MIME_PRIVATE
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -170,6 +170,7 @@
#define DEFAULT_LOG_FORMAT "%h %l %u %t \"%r\" %>s %b"
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -78,6 +78,7 @@
* URI includes query information (stuff after a ?-mark).
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -64,6 +64,7 @@
*
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -60,6 +60,7 @@
* mod_dir.c: handle default index files, and trailing-/ redirects
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -92,6 +92,7 @@
* Mark Cox, mark@ukweb.com, Allow relative URLs even when no base specified
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -64,6 +64,7 @@
*/
#include "ap_config.h"
#include "apr_strings.h"
#include "apr_file_io.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -91,6 +91,7 @@
* disabled, except those explicitly turned on with the "enabled" keyword.
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -99,6 +99,7 @@
* *** older versions of the module. ***
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -115,6 +115,7 @@
* SetEnvIf remote_addr (127.0.0.1|192.168.10.) LOCAL
*/
#include "apr_strings.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -75,6 +75,7 @@
#include "ap_config.h"
#include "apr_portable.h"
#include "apr_strings.h"
#include "apr_file_io.h"
#include "httpd.h"
#include "http_config.h"

View File

@@ -58,6 +58,7 @@
#define CORE_PRIVATE
#include "ap_config.h"
#include "apr_strings.h"
#include "httpd.h"
#include "http_connection.h"
#include "http_request.h"

View File

@@ -63,6 +63,7 @@
#include "httpd.h"
#include "http_config.h"
#include "ap_listen.h"
#include "apr_strings.h"
#include "http_log.h"
#include "mpm.h"
#ifdef HAVE_STRING_H

View File

@@ -67,6 +67,7 @@
#define CORE_PRIVATE
#include "apr.h" /* for ap_signal */
#include "ap_config.h"
#include "apr_strings.h"
#include "apr_lib.h"
#include "apr_portable.h"
#include "httpd.h"

View File

@@ -65,6 +65,7 @@
#include "http_vhost.h"
#include "util_uri.h"
#include "util_ebcdic.h"
#include "apr_strings.h"
#include "apr_getopt.h"
#include "ap_mpm.h"

View File

@@ -66,6 +66,7 @@ ap_/* ====================================================================
#define CORE_PRIVATE
#include "apr_strings.h"
#include "apr_portable.h"
#include "httpd.h"
#include "http_main.h"

View File

@@ -60,6 +60,7 @@
#include "ap_config.h"
#include "apr_portable.h"
#include "apr_strings.h"
#include "apr_file_io.h"
#include "httpd.h"
#include "http_main.h"

View File

@@ -62,6 +62,7 @@
#define CORE_PRIVATE
#include "apr_strings.h"
#include "apr_portable.h"
#include "httpd.h"
#include "http_main.h"

View File

@@ -59,6 +59,7 @@
#define CORE_PRIVATE
#include "apr_portable.h"
#include "apr_strings.h"
#include "apr_file_io.h"
#include "apr_thread_proc.h"
#include "ap_config.h"

View File

@@ -89,6 +89,7 @@
#include "ap_config.h"
#include "apr_portable.h"
#include "apr_strings.h"
#include "apr_thread_proc.h"
#include "httpd.h"
#include "mpm_default.h"

View File

@@ -73,6 +73,7 @@
#include "ap_config.h"
#include "ap_base64.h"
#include "apr_strings.h"
#include "httpd.h"
#include "http_main.h"
#include "http_log.h"

View File

@@ -87,6 +87,7 @@
#include "ap_config.h"
#include "apr_portable.h"
#include "apr_strings.h"
#include "httpd.h"
#include "util_md5.h"
#include "util_ebcdic.h"

View File

@@ -58,6 +58,7 @@
#define CORE_PRIVATE
#include "ap_config.h"
#include "apr_strings.h"
#include "httpd.h"
#include "http_config.h"
#include "http_main.h"

View File

@@ -62,6 +62,7 @@
*/
#include "ap_config.h"
#include "apr_strings.h"
#include "httpd.h"
#include "http_log.h"
#include "util_uri.h"

View File

@@ -64,6 +64,7 @@
#include "http_protocol.h"
#include "http_log.h"
#include "http_core.h"
#include "apr_strings.h"
#include "util_xml.h"

View File

@@ -69,6 +69,7 @@
#include "http_vhost.h"
#include "http_protocol.h"
#include "http_core.h"
#include "apr_strings.h"
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>

View File

@@ -79,6 +79,7 @@
* 6: Failure; username contains illegal or reserved characters
*/
#include "apr_strings.h"
#include "apr_lib.h"
#include "apr_errno.h"
#include "ap_config.h"