summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
authorsascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>2000-01-11 12:58:46 +0000
committersascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>2000-01-11 12:58:46 +0000
commitfc6b9d587400c9c46b2601d49d43036cd2dd6f94 (patch)
tree5403554e5037b19ae18d6be5c00f9cd7f3d34524 /acconfig.h
parent67f6cb0f6cafe1cedac2573bbbef98734feae93e (diff)
downloadlibapr-fc6b9d587400c9c46b2601d49d43036cd2dd6f94.tar.gz
Typedef socklen_t instead of defining it.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59587 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h
index a41300fbd..1b4f88339 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -78,4 +78,8 @@ Sigfunc *ap_signal(int signo, Sigfunc * func);
#define strcasecmp(s1,s2) stricmp(s1,s2)
#endif
+#if !defined(HAVE_SOCKLEN_T)
+typedef int socklen_t;
+#endif
+
#endif /* APR_CONFIG_H */