* Added kqueue support, enable with "--with-kqueue". Currently

keyboard input is disabled due to bugs in MacOSX 10.4.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@763 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2006-08-20 22:01:33 +00:00
parent dbfb9f1165
commit 8fe8fbbb31
5 changed files with 198 additions and 0 deletions
+11
View File
@@ -139,6 +139,17 @@ AC_DEFUN([TORRENT_WITHOUT_EPOLL], [
])
AC_DEFUN([TORRENT_WITH_KQUEUE], [
AC_ARG_WITH(kqueue,
[ --with-kqueue enable kqueue. [[default=no]]],
[
if test "$withval" = "yes"; then
AC_DEFINE(USE_KQUEUE, 1, Enable kqueue.)
fi
])
])
AC_DEFUN([TORRENT_WITHOUT_VARIABLE_FDSET], [
AC_ARG_WITH(variable-fdset,