Changeset 2843
- Timestamp:
- Aug 18, 2007, 5:05:51 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/list.h
r2746 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/makemeta.h
r2184 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/ptrarray.h
r2757 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/publish.c
r2757 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/publish.h
r2757 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/timer.c
r2836 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/timer.h
r2829 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/torrent.c
r2805 r2843 1051 1051 added += tr_torrentAttachPeer( tor, peer ); 1052 1052 } 1053 1054 tr_inf( "tr_torrentAddCompact %d peers to %s", added, tor->info.name );1055 1053 1056 1054 return added; -
trunk/libtransmission/tracker.h
r2805 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/libtransmission/trevent.h
r2836 r2843 7 7 * This exemption does not extend to derived works not owned by 8 8 * the Transmission project. 9 * 10 * $Id: 9 11 */ 10 12 -
trunk/mk/version.sh
r2801 r2843 13 13 PEERID_PREFIX="-TR080Z-" 14 14 USERAGENT_PREFIX="0.80+" 15 SVN_REVISION=`( find . '(' -name '*.[chm]' -o -name '*.cpp' -o -name '*.po' \ 16 -o -name '*.mk' -o -name '*.in' -o -name 'Makefile' \ 17 -o -name 'configure' ')' -exec cat '{}' ';' ) | \ 18 sed -e '/\$Id:/!d' -e \ 19 's/.*\$Id: [^ ]* \([0-9]*\) .*/\1/' | 20 awk 'BEGIN { REV=0 } 21 { if ( $1 > REV ) REV=$1 } 22 END { print REV }'` 15 SVN_REVISION=`find ./ -name "*\.[ch]" -o -name "*\.cpp" -o -name "*\.po" | \ 16 xargs grep "\$Id:" | \ 17 grep -v third-party | \ 18 cut -d"$Id:" -f3 | cut -d" " -f3 | sort -n | tail -n 1` 23 19 24 20 # Generate files to be included: only overwrite them if changed so make
Note: See TracChangeset
for help on using the changeset viewer.