2010-04-25 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Fixed compile error on the system which lacks poll()
	* src/DownloadEngineFactory.cc
pull/1/head
Tatsuhiro Tsujikawa 2010-04-25 10:12:33 +00:00
parent 5635190927
commit 6f6fc38205
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-04-25 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed compile error on the system which lacks poll()
* src/DownloadEngineFactory.cc
2010-04-24 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
In SocketCore::isReadable()/isWritable(), use poll() if it is

View File

@ -67,7 +67,9 @@
#ifdef HAVE_KQUEUE
# include "KqueueEventPoll.h"
#endif // HAVE_KQUEUE
#include "PollEventPoll.h"
#ifdef HAVE_POLL
# include "PollEventPoll.h"
#endif // HAVE_POLL
#include "SelectEventPoll.h"
#include "DlAbortEx.h"
#include "FileAllocationEntry.h"