Commit 758306eb authored by Jeff Trawick's avatar Jeff Trawick
Browse files

include <strings.h> for the strcasecmp() and strncasecmp() prototypes;

AIX doesn't have prototypes for these in string.h


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87149 13f79535-47bb-0310-9956-ffa450edef68
parent bcae8cfe
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -122,6 +122,9 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif

/*
** +-------------------------------------------------------+
+4 −0
Original line number Diff line number Diff line
@@ -66,6 +66,10 @@
#include "apr_file_io.h"
#include "apr_strings.h"

#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif

/* mod_speling.c - by Alexei Kosut <akosut@organic.com> June, 1996
 *
 * This module is transparent, and simple. It attempts to correct
+3 −0
Original line number Diff line number Diff line
@@ -82,6 +82,9 @@
#include "http_core.h"
#include "http_request.h"  /* for ap_hook_translate_name */

#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif

module AP_MODULE_DECLARE_DATA vhost_alias_module;

+3 −0
Original line number Diff line number Diff line
@@ -160,6 +160,9 @@
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif

#define DIR_CMD_PERMS OR_INDEXES

+3 −0
Original line number Diff line number Diff line
@@ -197,6 +197,9 @@
#ifdef HAVE_CTYPE_H
#include <ctype.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include "httpd.h"
#include "http_config.h"
#include "http_log.h"
Loading