Changes between Version 19 and Version 20 of rTorrentOnWindows


Ignore:
Timestamp:
06/16/13 19:07:43 (11 years ago)
Author:
Gabor Hudiczius
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • rTorrentOnWindows

    v19 v20  
    2929
    3030 * cppunit
    31  * gcc
     31 * gcc4
    3232 * git
    3333 * libcurl-devel
     
    5757{{{
    5858cd /usr/local/src/
    59 wget http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.2/libsigc++-2.2.10.tar.bz2
    60 tar xjvf libsigc++-2.2.10.tar.bz2
    61 cd /usr/local/src/libsigc++-2.2.10
     59wget http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.3/libsigc++-2.3.1.tar.xz
     60tar xJvf libsigc++-2.3.1.tar.bz2
     61cd /usr/local/src/libsigc++-2.3.1
    6262./configure
    6363make
     
    6868=== Installing libTorrent === #libtorrent
    6969
    70 Download the latest [http://libtorrent.rakshasa.no/ libTorrent] source from the [http://libtorrent.rakshasa.no/browser/trunk svn repository], compile, and install it.
     70Download the latest [http://libtorrent.rakshasa.no/ libTorrent] source from the [https://github.com/rakshasa/libtorrent git repository], compile, and install it.
    7171
    7272{{{
     
    124124=== Installing rTorrent === #rtorrent
    125125
    126 Now download the latest [http://libtorrent.rakshasa.no/ rTorrent] source from the [http://libtorrent.rakshasa.no/browser/trunk svn repository].
     126Now download the latest [http://libtorrent.rakshasa.no/ rTorrent] source from the [https://github.com/rakshasa/rtorrent git repository].
    127127
    128128You 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].
     
    132132git clone https://github.com/rakshasa/rtorrent rtorrent-git
    133133cd /usr/local/src/rtorrent-git
    134 wget http://rtwi.jmk.hu/downloads/misc/rtow.diff
     134wget http://static.jmk.hu/rtwi/downloads/misc/rtow.diff patch
    135135patch -p0 < rtow.diff
    136136./autogen.sh
     
    139139make install
    140140cd ..
     141}}}
     142
     143If '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
    141147}}}
    142148