Changeset 3529
- Timestamp:
- Oct 24, 2007, 5:24:17 PM (15 years ago)
- Location:
- branches/0.9x
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.9x/Makefile.am
r3340 r3529 1 1 ACLOCAL_AMFLAGS = -I m4 2 2 3 if WITH_GTK4 GTK_DIR = gtk po5 endif6 3 if HAVE_BEOS 7 4 BEOS_DIR = beos … … 10 7 MAC_DIR = macosx 11 8 endif 9 if WITH_GTK 10 GTK_DIR = gtk po 11 endif 12 12 if HAVE_WX 13 13 WX_DIR = wx 14 14 endif 15 15 16 SUBDIRS = third-party libtransmission daemon cli $(GTK_DIR) $(BEOS_DIR) $(MAC_DIR) $(WX_DIR) 16 SUBDIRS = \ 17 third-party \ 18 libtransmission \ 19 daemon cli \ 20 $(BEOS_DIR) \ 21 $(GTK_DIR) \ 22 $(MAC_DIR) \ 23 $(WX_DIR) 17 24 18 25 EXTRA_DIST = \ 19 NEWS \ 20 AUTHORS \ 21 LICENSE \ 22 README \ 23 third-party \ 24 intltool-extract.in \ 25 intltool-merge.in \ 26 intltool-update.in 26 NEWS \ 27 AUTHORS \ 28 LICENSE \ 29 README \ 30 intltool-extract.in \ 31 intltool-merge.in \ 32 intltool-update.in 33 34 DISTCLEANFILES = \ 35 intltool-extract \ 36 intltool-merge \ 37 intltool-update 38 -
branches/0.9x/configure.ac
r3481 r3529 1 AC_INIT([transmission],[0. 82+],[http://transmission.m0k.org/trac/newticket])2 PEERID_PREFIX="-TR0 82Z-"3 USERAGENT_PREFIX="0. 82+"1 AC_INIT([transmission],[0.90],[http://transmission.m0k.org/trac/newticket]) 2 PEERID_PREFIX="-TR090Z-" 3 USERAGENT_PREFIX="0.90+" 4 4 5 5 AC_PREREQ(2.54) 6 6 dnl AM_CONFIG_HEADER(config.h) 7 7 AC_CONFIG_SRCDIR(libtransmission/transmission.h) 8 AM_INIT_AUTOMAKE( AC_PACKAGE_NAME,AC_PACKAGE_VERSION)8 AM_INIT_AUTOMAKE([1.9 tar-ustar]) 9 9 AC_PROG_LIBTOOL 10 10 … … 203 203 daemon/Makefile 204 204 libtransmission/Makefile 205 libtransmission/version.h206 205 third-party/Makefile 207 206 macosx/Makefile -
branches/0.9x/gtk/Makefile.am
r3392 r3529 66 66 67 67 EXTRA_DIST = \ 68 $(DESKTOP_IN_FILES) 68 $(DESKTOP_IN_FILES) \ 69 transmission.png 70 71 DISTCLEANFILES = \ 72 transmission.desktop 73 -
branches/0.9x/libtransmission/Makefile.am
r3169 r3529 4 4 5 5 noinst_LIBRARIES = libtransmission.a 6 7 EXTRA_DIST = version.h.in8 6 9 7 libtransmission_a_SOURCES = \ … … 76 74 upnp.h \ 77 75 utils.h \ 76 version.h \ 78 77 xml.h 78 79 EXTRA_DIST = \ 80 version.h.in 81 82 do_subst = sed \ 83 -e 's,[@]PEERID_PREFIX[@],$(PEERID_PREFIX),g' \ 84 -e 's,[@]USERAGENT_PREFIX[@],$(USERAGENT_PREFIX),g' \ 85 -e 's,[@]SVN_REVISION[@],$(SVN_REVISION),g' \ 86 -e 's,[@]SHORT_VERSION_STRING[@],$(SHORT_VERSION_STRING),g' \ 87 -e 's,[@]LONG_VERSION_STRING[@],$(LONG_VERSION_STRING),g' 88 89 version.h: version.h.in 90 $(do_subst) < $(srcdir)/version.h.in > version.h 91 92 CLEANFILES = \ 93 version.h -
branches/0.9x/libtransmission/transmission.h
r3486 r3529 30 30 #endif 31 31 32 #include "version.h"32 #include <libtransmission/version.h> 33 33 34 34 #include <inttypes.h> -
branches/0.9x/macosx/Makefile.am
r3525 r3529 13 13 it.lproj \ 14 14 ko.lproj \ 15 nl.lproj \ 15 16 ru.lproj \ 16 nl.lproj 17 AboutWindowController.h \ 18 AboutWindowController.m \ 19 ActionMenuRatioToDisplayRatioTransformer.h \ 20 ActionMenuRatioToDisplayRatioTransformer.m \ 21 ActionMenuSpeedToDisplayLimitTransformer.h \ 22 ActionMenuSpeedToDisplayLimitTransformer.m \ 23 ActionPopUpButton.h \ 24 ActionPopUpButton.m \ 25 Badger.h \ 26 Badger.m \ 27 Controller.h \ 28 Controller.m \ 29 CreatorWindowController.h \ 30 CreatorWindowController.m \ 31 DragOverlayView.h \ 32 DragOverlayView.m \ 33 DragOverlayWindow.h \ 34 DragOverlayWindow.m \ 35 ExpandedPathToIconTransformer.h \ 36 ExpandedPathToIconTransformer.m \ 37 ExpandedPathToPathTransformer.h \ 38 ExpandedPathToPathTransformer.m \ 39 FileNameCell.h \ 40 FileNameCell.m \ 41 FileOutlineView.h \ 42 FileOutlineView.m \ 43 FilePriorityCell.h \ 44 FilePriorityCell.m \ 45 FilterBarButton.h \ 46 FilterBarButton.m \ 47 FilterBarView.h \ 48 FilterBarView.m \ 49 ImageBackgroundView.h \ 50 ImageBackgroundView.m \ 51 InfoTabButtonCell.h \ 52 InfoTabButtonCell.m \ 53 InfoWindowController.h \ 54 InfoWindowController.m \ 55 IPCController.h \ 56 IPCController.m \ 57 main.m \ 58 MessageWindowController.h \ 59 MessageWindowController.m \ 60 NSBezierPathAdditions.h \ 61 NSBezierPathAdditions.m \ 62 NSMenuAdditions.h \ 63 NSMenuAdditions.m \ 64 NSStringAdditions.h \ 65 NSStringAdditions.m \ 66 PeerProgressIndicatorCell.h \ 67 PeerProgressIndicatorCell.m \ 68 PeerTableView.h \ 69 PeerTableView.m \ 70 PiecesView.h \ 71 PiecesView.m \ 72 PortChecker.h \ 73 PortChecker.m \ 74 PrefsController.h \ 75 PrefsController.m \ 76 PrefsWindow.h \ 77 PrefsWindow.m \ 78 SpeedLimitToTurtleIconTransformer.h \ 79 SpeedLimitToTurtleIconTransformer.m \ 80 StatusBarView.h \ 81 StatusBarView.m \ 82 TorrentCell.h \ 83 TorrentCell.m \ 84 Torrent.h \ 85 Torrent.m \ 86 TorrentTableView.h \ 87 TorrentTableView.m 17 88 18 89 # Use Xcode do make the actual build -
branches/0.9x/third-party/Makefile.am
r3329 r3529 1 1 SUBDIRS = libevent 2 2 3 EXTRA_DIST = \ 4 macosx-libevent-config.h 5 3 6 install:
Note: See TracChangeset
for help on using the changeset viewer.