summaryrefslogtreecommitdiff
path: root/include/arch/win32/misc.h
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-06-22 00:36:07 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-06-22 00:36:07 +0000
commitfcd63650edcfbd6efcf028ab6cbeb9c454443afe (patch)
tree5322a9b5b971d414e76defda30ae5be49a73769d /include/arch/win32/misc.h
parent62946928e4f417f23b3da6756fadeb754a650644 (diff)
downloadlibapr-fcd63650edcfbd6efcf028ab6cbeb9c454443afe.tar.gz
Big commit. Basically, if APR defines a public feature macro, then APR
should also use that macro internally. This keeps us from checking for multiple macros as we were doing in the SENDFILE case. It also means that APR is definately building the same way that external programs expect it to. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60239 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch/win32/misc.h')
-rw-r--r--include/arch/win32/misc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/arch/win32/misc.h b/include/arch/win32/misc.h
index 333ea0def..e4b10ee7e 100644
--- a/include/arch/win32/misc.h
+++ b/include/arch/win32/misc.h
@@ -67,16 +67,16 @@
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
-#ifdef HAVE_STDIO_H
+#ifdef APR_HAVE_STDIO_H
#include <stdio.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
-#ifdef HAVE_SIGNAL_H
+#ifdef APR_HAVE_SIGNAL_H
#include <signal.h>
#endif
-#ifdef HAVE_PTHREAD_H
+#ifdef APR_HAVE_PTHREAD_H
#include <pthread.h>
#endif
#ifdef BEOS