summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2000-07-07 06:07:43 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2000-07-07 06:07:43 +0000
commit3753ec977a49aff11ac19da996c99f90a2d76aae (patch)
treeb1c8d4fecf06193c39c6dc646de373f4bd28d829 /acconfig.h
parente958c8ed67f36ce4f8196990022a1919312f9b90 (diff)
downloadlibapr-3753ec977a49aff11ac19da996c99f90a2d76aae.tar.gz
The strcasecmp()->stricmp() mapping is done in apr_general.h so don't do
it in apr_private.h as well as it causes redefinition warnings all through the APR build. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60313 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/acconfig.h b/acconfig.h
index 1edd878d3..8c8404514 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -41,10 +41,6 @@
/* Make sure we have ssize_t defined to be something */
#undef ssize_t
-#if !defined(HAVE_STRCASECMP) && defined(HAVE_STRICMP)
-#define strcasecmp(s1,s2) stricmp(s1,s2)
-#endif
-
#if !defined(HAVE_SOCKLEN_T)
typedef int socklen_t;
#endif