Go to file
Charles Kerr 1b7a8cdc68 (trunk gtk) fix r11563 bug that stopped showing the Torrent Options dialog 2010-12-22 03:06:06 +00:00
Transmission.xcodeproj update the Mac project and libevent files 2010-12-20 02:16:56 +00:00
cli (trunk) clarify http_proxy in the manpages 2010-12-16 16:19:19 +00:00
daemon (trunk) clarify http_proxy in the manpages 2010-12-16 16:19:19 +00:00
extras #3740 The session argument cache-size-mb is documented as cache-size 2010-11-14 18:14:59 +00:00
gtk (trunk gtk) fix r11563 bug that stopped showing the Torrent Options dialog 2010-12-22 03:06:06 +00:00
libtransmission (trunk libT) remove some of the lazy-verify debug messages. 2010-12-21 23:09:26 +00:00
m4 remove unused m4 macros, as pointed out by stdisease 2009-06-03 15:22:09 +00:00
macosx use the lighter bottom line of the filter bar when the window is inactive 2010-12-21 03:32:33 +00:00
po (trunk gtk) remove dead code: gtk/tracker-list.[ch] 2010-12-21 17:19:07 +00:00
qt (trunk) one of the periodic, banal "remove-trailing-spaces from lines of source code" cleanup commits 2010-12-12 16:43:19 +00:00
third-party fix replace-all of #undef -> #under 2010-12-20 02:19:33 +00:00
utils (trunk) #3836 "libevent2 support" -- bump libevent2 requirement to 2.0.10. This will break the Mac build for a minute intil BMW applies his Mac patch 2010-12-20 02:07:51 +00:00
web (trunk) #1538 "Make Web UI URL configurable" -- added to trunk. Patch by wereHamster 2010-12-12 18:22:11 +00:00
.gitignore ignore miniupnpcstring.h when submitting 2009-07-14 00:21:37 +00:00
AUTHORS update AUTHORS and Credits with my LLC info 2010-11-02 01:07:48 +00:00
COPYING small tweaks 2010-02-16 03:29:31 +00:00
ChangeLog required files 2007-07-18 23:13:30 +00:00
Makefile.am (trunk) rename "doc" as "extras", and add transmission-1920.jpg there 2010-08-02 02:49:52 +00:00
NEWS tweak NEWS some more 2010-12-09 20:09:49 +00:00
README (trunk) #3715 "README file is outdated" -- commit patch from delarius. 2010-11-05 19:41:41 +00:00
autogen.sh remove the '--enable-maintainer-mode' arguments in autogen.sh 2010-11-25 01:06:59 +00:00
configure.ac (trunk) #3836 "libevent2 support" -- bump libevent2 requirement to 2.0.10. This will break the Mac build for a minute intil BMW applies his Mac patch 2010-12-20 02:07:51 +00:00
transmission-gtk.spec.in (trunk gtk) #3762 "errors in rpm spec file" -- apply fixes from knnniggett 2010-11-22 12:50:42 +00:00
uncrustify.cfg run libT, cli, daemon, gtk through the source-code formatter "uncrustify" as promised/threatened 2008-09-23 19:11:04 +00:00
update-version-h.sh change 'v' field in dht to use major/minor version instead of svn revision 2010-10-13 17:09:05 +00:00

README

ABOUT

  Transmission is a fast, easy, and free BitTorrent client.
  It comes in several flavors:

    * A native Mac OS X GUI application
    * GTK+ and Qt GUI applications for Linux, BSD, etc.
    * A headless daemon for servers and routers
    * A web UI for remote controlling any of the above

  Visit http://www.transmissionbt.com/ for more information.

BUILDING

  Transmission has an Xcode project file (Transmission.xcodeproj)
  for building in Xcode.

  For a more detailed description, and dependancies, visit:
  http://trac.transmissionbt.com/wiki/

  Building a Transmission release from the command line:

    $ xz -d -c transmission-2.11.tar.xz | tar xf -
    $ cd transmission-2.11
    $ ./configure
    $ make
    $ sudo make install

  Building Transmission from the nightly builds:

    Download a tarball from http://build.transmissionbt.com/job/trunk-linux-inc/
    and follow the steps from the previous section.

    If you're new to building programs from source code, this is typically 
    easier than building from SVN.

  Building Transmission from SVN (First Time):

    $ svn co svn://svn.transmissionbt.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh
    $ make
    $ sudo make install

  Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ ./update-version-h.sh 
    $ make
    $ sudo make install

  Notes for building on Solaris' C compiler:  User av reports success with
  this invocation: ./configure CC=c99 CXX=CC CFLAGS='-D__EXTENSIONS__ -mt'