Changeset 9931
- Timestamp:
- Jan 14, 2010, 2:20:49 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README
r8722 r9931 1 README for Transmission 2 ======================= 1 ABOUT 3 2 4 Transmission is a fast, easy, and free BitTorrent client. 3 Transmission is a fast, easy, and free BitTorrent client. 4 It comes in several flavors: 5 5 6 It runs on Mac OS X (Cocoa interface) and 7 Linux/NetBSD/FreeBSD/OpenBSD (GTK+ and Qt interfaces). 6 * A native Mac OS X GUI application 7 * GTK+ and Qt GUI applications for Linux, BSD, etc. 8 * A headless daemon for servers and routers 9 * A web UI for remote controlling any of the above 8 10 9 Visit http://www.transmissionbt.com/ for more information.11 Visit http://www.transmissionbt.com/ for more information. 10 12 13 BUILDING 11 14 12 Building Transmission 13 ===================== 15 Transmission has an Xcode project file (Transmission.xcodeproj) 16 for building in Xcode. 14 17 15 Transmission has an Xcode project file (Transmission.xcodeproj) 16 for building in Xcode. 18 For a more detailed description, and dependancies, visit: 19 http://trac.transmissionbt.com/wiki/ 17 20 18 For a more detailed description, and dependancies, visit: 19 http://trac.transmissionbt.com/wiki/ 21 Building a Transmission release from the command line: 20 22 21 Building a Transmission release from the command line: 23 $ xz -d -c transmission-1.80.tar.xz | tar xf - 24 $ cd transmission-1.80 25 $ ./configure 26 $ make 27 $ sudo make install 22 28 23 $ tar xvfj transmission-1.40.tar.bz2 24 $ cd transmission-1.40 25 $ ./configure -q && make -s 26 $ su (if necessary for the next line) 27 $ make install 28 29 Building Transmission from the nightly builds: 29 Building Transmission from the nightly builds: 30 30 31 31 Download a tarball from http://build.transmissionbt.com/job/trunk-linux-inc/ … … 35 35 easier than building from SVN. 36 36 37 Building Transmission from SVN (First Time):37 Building Transmission from SVN (First Time): 38 38 39 39 $ svn co svn://svn.m0k.org/Transmission/trunk Transmission 40 40 $ cd Transmission 41 $ ./autogen.sh && make -s42 $ su (if necessary for the next line)43 $ make install41 $ ./autogen.sh 42 $ make 43 $ sudo make install 44 44 45 Building Transmission from SVN (Updating):45 Building Transmission from SVN (Updating): 46 46 47 47 $ cd Transmission … … 49 49 $ svn up 50 50 $ ./update-version-h.sh 51 $ make -s 52 $ su (if necessary for the next line) 53 $ make install 51 $ make 52 $ sudo make install 54 53 55 56 57 Notes for building on Solaris' C compiler: User av reports success with 58 this invocation: ./configure CC=c99 CXX=CC CFLAGS='-D__EXTENSIONS__ -mt' 54 Notes for building on Solaris' C compiler: User av reports success with 55 this invocation: ./configure CC=c99 CXX=CC CFLAGS='-D__EXTENSIONS__ -mt' -
trunk/libtransmission/bitfield.h
r9868 r9931 12 12 13 13 #ifndef __TRANSMISSION__ 14 #error only libtransmission should #include this header.14 #error only libtransmission should #include this header. 15 15 #endif 16 16 -
trunk/libtransmission/bitset.h
- Property svn:keywords set to Date Rev Author Id
r9868 r9931 8 8 * the Transmission project. 9 9 * 10 * $Id :$10 * $Id$ 11 11 */ 12 12 -
trunk/libtransmission/completion.h
r9868 r9931 11 11 */ 12 12 13 #ifndef TR_COMPLETION_H14 #define TR_COMPLETION_H15 16 13 #ifndef __TRANSMISSION__ 17 14 #error only libtransmission should #include this header. 18 15 #endif 16 17 #ifndef TR_COMPLETION_H 18 #define TR_COMPLETION_H 19 19 20 20 #include <assert.h> -
trunk/libtransmission/fdlimit.c
r9922 r9931 2 2 * $Id$ 3 3 * 4 * Copyright (c) 2005-20 08Transmission authors and contributors4 * Copyright (c) 2005-2010 Transmission authors and contributors 5 5 * 6 6 * Permission is hereby granted, free of charge, to any person obtaining a -
trunk/libtransmission/fdlimit.h
r9495 r9931 2 2 * $Id$ 3 3 * 4 * Copyright (c) 2005-20 08Transmission authors and contributors4 * Copyright (c) 2005-2010 Transmission authors and contributors 5 5 * 6 6 * Permission is hereby granted, free of charge, to any person obtaining a … … 24 24 25 25 #ifndef __TRANSMISSION__ 26 #error only libtransmission should #include this header.26 #error only libtransmission should #include this header. 27 27 #endif 28 28 -
trunk/libtransmission/magnet.h
r9868 r9931 10 10 * $Id:$ 11 11 */ 12 13 #ifndef __TRANSMISSION__ 14 #error only libtransmission should #include this header. 15 #endif 12 16 13 17 #ifndef TR_MAGNET_H -
trunk/libtransmission/platform.h
r9868 r9931 11 11 */ 12 12 13 #ifndef TR_PLATFORM_H14 #define TR_PLATFORM_H15 16 13 #ifndef __TRANSMISSION__ 17 14 #error only libtransmission should #include this header. 18 15 #endif 16 17 #ifndef TR_PLATFORM_H 18 #define TR_PLATFORM_H 19 19 20 20 #if defined( WIN32 ) -
trunk/libtransmission/tr-getopt.h
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/InfoTextField.h
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/InfoTextField.m
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/NSApplicationAdditions.h
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/NSApplicationAdditions.m
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/TrackerCell.h
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/TrackerCell.m
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/TrackerNode.h
- Property svn:keywords set to Date Rev Author Id
-
trunk/macosx/TrackerNode.m
- Property svn:keywords set to Date Rev Author Id
Note: See TracChangeset
for help on using the changeset viewer.