Changeset 125
- Timestamp:
- Feb 10, 2006, 8:52:44 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r122 r125 5 5 - Rewritten choking algorithm 6 6 - Remembers download and upload sizes from one launch to another 7 - New GTK interface7 - New GTK+ interface 8 8 - New BeOS interface 9 9 - OS X: Dock badging -
trunk/README
r122 r125 7 7 8 8 Transmission is open source (MIT license) and runs on Mac OS X (Cocoa 9 interface), Linux/NetBSD/FreeBSD/OpenBSD (GTK interface) and BeOS9 interface), Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface) and BeOS 10 10 (native interface). 11 11 -
trunk/configure
r116 r125 11 11 --disable-openssl Disable OpenSSL, use built-in SHA1 implementation 12 12 --openssl-prefix=PATH Location of OpenSSL headers and library 13 --gettext-prefix=PATH Location of the Gettext header and library 13 14 --disable-gtk Don't build the GTK+ GUI 14 15 --prefix=PATH Install here instead of $INSTALL_PREFIX … … 54 55 } 55 56 EOF 57 58 if [ -n "$GETTEXT_PREFIX" ] && $CC "-I$GETTEXT_PREFIX/include" "-Wl,-R$GETTEXT_PREFIX/lib" "-L$GETTEXT_PREFIX/lib" -lintl -liconv -o testconf testconf.c >/dev/null 2>&1 59 then 60 GTKCCFLAGS="-I$GETTEXT_PREFIX/include $GTKCCFLAGS" 61 GTKLINKLIBS="-Wl,-R$GETTEXT_PREFIX/lib -L$GETTEXT_PREFIX/lib -lintl -liconv $GTKLINKLIBS" 62 rm -f testconf.c testconf 63 return 0 64 fi 65 56 66 if $CC $GTKCCFLAGS $GTKLINKLIBS -o testconf testconf.c > /dev/null 2>&1 57 67 then … … 60 70 fi 61 71 62 # XXX there has to be a better way than this63 for intl_testdir in/usr/local/include /usr/X11R6/include /usr/pkg/include72 for intl_testdir in $INSTALL_PREFIX/include \ 73 /usr/local/include /usr/X11R6/include /usr/pkg/include 64 74 do 65 75 if $CC $GTKCCFLAGS -I$intl_testdir $GTKLINKLIBS -o testconf testconf.c > /dev/null 2>&1 … … 99 109 GTKCCFLAGS= 100 110 GTKLINKLIBS= 101 echo "GTK+: no, could not find libintl.h"111 echo "GTK+: no, could not find gettext libintl.h" 102 112 GTK=no 103 113 fi … … 150 160 x--openssl-prefix=*) 151 161 OPENSSL_PREFIX="$param"; 162 ;; 163 x--gettext-prefix=*) 164 GETTEXT_PREFIX="$param"; 152 165 ;; 153 166 x--disable-gtk) -
trunk/gtk/dialogs.h
r89 r125 1 1 /* 2 Copyright (c) 2005 Joshua Elsasser. All rights reserved.2 Copyright (c) 2005-2006 Joshua Elsasser. All rights reserved. 3 3 4 4 Redistribution and use in source and binary forms, with or without -
trunk/gtk/util.c
r114 r125 1 1 /* 2 Copyright (c) 2005 Joshua Elsasser. All rights reserved.2 Copyright (c) 2005-2006 Joshua Elsasser. All rights reserved. 3 3 4 4 Redistribution and use in source and binary forms, with or without -
trunk/gtk/util.h
r96 r125 1 1 /* 2 Copyright (c) 2005 Joshua Elsasser. All rights reserved.2 Copyright (c) 2005-2006 Joshua Elsasser. All rights reserved. 3 3 4 4 Redistribution and use in source and binary forms, with or without
Note: See TracChangeset
for help on using the changeset viewer.