You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2004/11/21 08:15:22 UTC

svn commit: r106076 - /apr/apr/trunk/poll/unix/select.c

Author: wrowe
Date: Sat Nov 20 23:15:22 2004
New Revision: 106076

Modified:
   apr/apr/trunk/poll/unix/select.c
Log:

  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.

Modified: apr/apr/trunk/poll/unix/select.c
==============================================================================
--- apr/apr/trunk/poll/unix/select.c	(original)
+++ apr/apr/trunk/poll/unix/select.c	Sat Nov 20 23:15:22 2004
@@ -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