1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 09:13:06 +00:00
No description
Find a file
2010-02-15 17:32:42 +00:00
cli
daemon (trunk daemon) #2899: "watch.c reports matches for every file" -- fixed in trunk for 1.90 2010-02-12 12:50:36 +00:00
doc
gtk (trunk gtk) #2900 "Indicator Application can only work with icon names, not rendered icons" -- patched for 1.90 in trunk. Thanks to qense for the patch. 2010-02-14 14:26:45 +00:00
libtransmission (trunk libT) instead of growing the ptrArray by a constant fixed amount when it runs out of room, follow exponential growth to minimize the number of realloc()s needed. This speeds up populating large arrays in bencode.c 2010-02-15 16:44:02 +00:00
m4
macosx update Italian localization for 1.9 2010-02-15 17:32:42 +00:00
po
qt
third-party
Transmission.xcodeproj
web
.gitignore
AUTHORS
autogen.sh (trunk) #2553 "autogen failure" -- fixed in trunk for 1.90 2010-02-10 03:20:17 +00:00
ChangeLog
configure.ac (trunk) tweak the configure script's "options" display to emphasise that the optional libraries are optional 2010-02-15 14:39:04 +00:00
COPYING
Makefile.am
NEWS ocd tweaks 2010-02-15 16:15:37 +00:00
README
transmission.spec.in
uncrustify.cfg
update-version-h.sh

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-1.80.tar.xz | tar xf -
    $ cd transmission-1.80
    $ ./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.m0k.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'