diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2004-11-21 07:15:22 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2004-11-21 07:15:22 +0000 |
commit | eebc186cde1d0cd2cce143f90d65f409689796b9 (patch) | |
tree | f75acf8a75b79bfd7d0a7fded6162f46c6728213 /poll/unix/select.c | |
parent | 019d88c7b52ed4db6bb7e16f1b180b0c76a0fecf (diff) | |
download | libapr-eebc186cde1d0cd2cce143f90d65f409689796b9.tar.gz |
Things get wonky on win32 with includes, because the included
library was in arch/unix/ msvc attempted to include the sub-includes
from that same path instead of from arch/win32/ which occured
earlier in the -I path list.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@106076 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll/unix/select.c')
-rw-r--r-- | poll/unix/select.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/poll/unix/select.c b/poll/unix/select.c index c1b657e44..e865e6c56 100644 --- a/poll/unix/select.c +++ b/poll/unix/select.c @@ -13,6 +13,12 @@ * limitations under the License. */ +#include "apr.h" +#include "apr_poll.h" +#include "apr_time.h" +#include "apr_portable.h" +#include "apr_arch_networkio.h" +#include "apr_arch_file_io.h" #include "apr_arch_poll_private.h" #ifdef POLL_USES_SELECT |