From 92b72953030b3e485bcdf270e77dec1d31315445 Mon Sep 17 00:00:00 2001 From: Jari Sundell Date: Mon, 3 Oct 2011 13:20:33 +0900 Subject: [PATCH 1/2] Removing unneeded TODO file. --- TODO | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 TODO diff --git a/TODO b/TODO deleted file mode 100644 index ac8c2c48..00000000 --- a/TODO +++ /dev/null @@ -1,19 +0,0 @@ -See libtorrent/TODO for a list of TODO items. - -Polling during last phase of shutdown should be very quick, don't use -normal timeout. - -Consider basing WindowPeer* on a common base class. - -Some kind of indication that a tracker request was tried, but won't be -allowed since the tracker set a min interval. - -Make accumulate return the value, no refs please... - -> - seeing the number of seeds / leechers of a torrent on the main -> screen (and the level of distribution between leechers); - -> - being able to delete not just the torrent file, but the files it -> created from rtorrent. Like when you start a torrent, but it is too -> slow or broken or for various reasons you don't want to download it. - From aaa55860885e7eb46a9d804a50643bdc33d0097e Mon Sep 17 00:00:00 2001 From: Jari Sundell Date: Mon, 3 Oct 2011 20:25:02 +0900 Subject: [PATCH 2/2] Added '__builtin_popcount' check to 'configure.ac' as 'rak/algorithms.h' needs it. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 94dc56b0..5bac9e06 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,7 @@ AC_DEFINE(USER_AGENT, [std::string(PACKAGE "/" VERSION "/") + torrent::version() AC_CHECK_FUNCS(posix_memalign) TORRENT_CHECK_CACHELINE() +TORRENT_CHECK_POPCOUNT() CC_ATTRIBUTE_UNUSED( AC_DEFINE([__UNUSED], [__attribute__((unused))], [Wrapper around unused attribute]),