summaryrefslogtreecommitdiff
path: root/misc/unix
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2005-04-14 23:38:52 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2005-04-14 23:38:52 +0000
commitd3c5b967f137ff47b51fb3ece755066c768038e9 (patch)
tree4728da134aaf0111cf5f5937eeb41d8ca5273dea /misc/unix
parent1aae97b6804314f49024d41e0aea57a4085b798c (diff)
downloadlibapr-d3c5b967f137ff47b51fb3ece755066c768038e9.tar.gz
Allow Apache on NetWare to build using either the standard socket libraries or the Winsock libraries.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@161365 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc/unix')
-rw-r--r--misc/unix/errorcodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/unix/errorcodes.c b/misc/unix/errorcodes.c
index d814763b5..45b8e21ec 100644
--- a/misc/unix/errorcodes.c
+++ b/misc/unix/errorcodes.c
@@ -183,7 +183,7 @@ static char *apr_os_strerror(char* buf, apr_size_t bufsize, int err)
return stuffbuffer(buf, bufsize, result);
}
-#elif defined(WIN32) || defined(NETWARE)
+#elif defined(WIN32) || (defined(NETWARE) && defined(USE_WINSOCK))
static const struct {
apr_status_t code;