mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-14 22:22:31 +00:00
* Changed RequestList so that it clears m_canceled when a non-canceled
piece is downloaded, and it no longer checks the whole dequeue for invalid transfers. * Fixed a bad exception in PeerConnectionBase::down_chunk_from_buffer(), it is supposed to check the buffer was used up only when the transfer is unfinished, not when finished. * Added --with-address-space to allow the user to change the address space size. Defaults to 1024 MB on 32 bit, 4096 MB on 64 bit archs. * Added a parameter to display::Manager::schedule_update that sets the minimum update interval. Normal updates use 50 msec, adjust_layout uses 0 msec. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@769 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -331,3 +331,24 @@ AC_DEFUN([TORRENT_WITHOUT_STATFS], [
|
||||
fi
|
||||
])
|
||||
])
|
||||
|
||||
AC_DEFUN([TORRENT_WITH_ADDRESS_SPACE], [
|
||||
AC_ARG_WITH(address-space,
|
||||
AC_HELP_STRING([--with-address-space=MB], [Change the default address space size, default 1024 MB.]),
|
||||
[
|
||||
if test ! -z $withval -a "$withval" != "yes" -a "$withval" != "no"; then
|
||||
AC_DEFINE_UNQUOTED(DEFAULT_ADDRESS_SPACE_SIZE, [$withval])
|
||||
else
|
||||
AC_MSG_ERROR(--with-address-space requires a parameter.)
|
||||
fi
|
||||
],
|
||||
[
|
||||
AC_CHECK_SIZEOF(long)
|
||||
|
||||
if test "$ac_cv_sizeof_long" = "4"; then
|
||||
AC_DEFINE(DEFAULT_ADDRESS_SPACE_SIZE, 4096, Default address space size.)
|
||||
else
|
||||
AC_DEFINE(DEFAULT_ADDRESS_SPACE_SIZE, 1024, Default address space size.)
|
||||
fi
|
||||
])
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user