Changes between Version 19 and Version 20 of rTorrentOnWindows
- Timestamp:
- 06/16/13 19:07:43 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
rTorrentOnWindows
v19 v20 29 29 30 30 * cppunit 31 * gcc 31 * gcc4 32 32 * git 33 33 * libcurl-devel … … 57 57 {{{ 58 58 cd /usr/local/src/ 59 wget http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2. 2/libsigc++-2.2.10.tar.bz260 tar x jvf libsigc++-2.2.10.tar.bz261 cd /usr/local/src/libsigc++-2. 2.1059 wget http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.3/libsigc++-2.3.1.tar.xz 60 tar xJvf libsigc++-2.3.1.tar.bz2 61 cd /usr/local/src/libsigc++-2.3.1 62 62 ./configure 63 63 make … … 68 68 === Installing libTorrent === #libtorrent 69 69 70 Download the latest [http://libtorrent.rakshasa.no/ libTorrent] source from the [http ://libtorrent.rakshasa.no/browser/trunk svnrepository], compile, and install it.70 Download the latest [http://libtorrent.rakshasa.no/ libTorrent] source from the [https://github.com/rakshasa/libtorrent git repository], compile, and install it. 71 71 72 72 {{{ … … 124 124 === Installing rTorrent === #rtorrent 125 125 126 Now download the latest [http://libtorrent.rakshasa.no/ rTorrent] source from the [http ://libtorrent.rakshasa.no/browser/trunk svnrepository].126 Now download the latest [http://libtorrent.rakshasa.no/ rTorrent] source from the [https://github.com/rakshasa/rtorrent git repository]. 127 127 128 128 You are going to need to do some modification on the source code. Download and apply this [http://static.jmk.hu/rtwi/downloads/misc/rtow.diff patch] (see ticket [http://libtorrent.rakshasa.no/ticket/1184 #1184] and ticket [http://libtorrent.rakshasa.no/ticket/1495 #1495] at the [http://libtorrent.rakshasa.no/ rTorrent] trac). After you're done, you can compile and install [http://libtorrent.rakshasa.no/ rTorrent]. … … 132 132 git clone https://github.com/rakshasa/rtorrent rtorrent-git 133 133 cd /usr/local/src/rtorrent-git 134 wget http:// rtwi.jmk.hu/downloads/misc/rtow.diff134 wget http://static.jmk.hu/rtwi/downloads/misc/rtow.diff patch 135 135 patch -p0 < rtow.diff 136 136 ./autogen.sh … … 139 139 make install 140 140 cd .. 141 }}} 142 143 If 'make' fails, with the message ''"fatal error: ncurses.h: No such file or directory"'' you might need to run ./configure with the CXXFLAGS option, i.e.: 144 145 {{{ 146 ./configure --with-xmlrpc-c CXXFLAGS=-I/usr/include/ncurses 141 147 }}} 142 148