~ubuntu-branches/ubuntu/jaunty/transmission/jaunty-security

« back to all changes in this revision

Viewing changes to cli/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2008-11-28 15:33:48 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20081128153348-it70trfnxiroblmc
Tags: 1.40-0ubuntu1
* New upstream release (LP: #302672)
  - Tracker communication uses fewer resources
  - More accurate bandwidth limits
  - Reduce disk fragmentation by preallocating files (LP: #287726)
  - Stability, security and performance improvements to the RPC /
    Web UI server (closes LP: #290423)
  - Support compression when serving Web UI and RPC responses
  - Simplify the RPC whitelist
  - Fix bug that prevented handshakes with encrypted BitComet peers
  - Fix 1.3x bug that could re-download some data unnecessarily
    (LP: #295040)
  - Option to automatically update the blocklist weekly
  - Added off-hour bandwidth scheduling
  - Simplify file/priority selection in the details dialog
  - Fix a couple of crashes
  - New / updated translations
  - Don't inhibit hibernation by default (LP: #292929)
  - Use "close" animation when sending to notification area (LP: #130811)
  - Fix resize problems (LP: #269872)
  - Support "--version" option when launching from command line
    (LP: #292011)
  - Correctly parse announce URLs that have leading or trailing
    spaces (LP: #262411)
  - Display an error when "Open Torrent" fails (LP: #281463)
* Dropped 10_fix_crasher_from_upstream.dpatch: Fix is in this
  upstream release.
* debian/control: Don't just build-depend on libcurl-dev, which is
  a virtual package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AM_CPPFLAGS = -I$(top_srcdir) $(LIBEVENT_CPPFLAGS)
2
 
AM_CFLAGS = $(OPENSSL_CFLAGS) $(LIBCURL_CFLAGS) $(PTHREAD_CFLAGS)
 
2
 
 
3
AM_CFLAGS = \
 
4
    $(OPENSSL_CFLAGS) \
 
5
    $(LIBCURL_CFLAGS) \
 
6
    $(ZLIB_CFLAGS) \
 
7
    $(PTHREAD_CFLAGS)
 
8
 
 
9
AM_LDFLAGS = \
 
10
    $(ZLIB_LDFLAGS)
3
11
 
4
12
bin_PROGRAMS = transmissioncli
5
13
 
8
16
transmissioncli_SOURCES = cli.c
9
17
 
10
18
transmissioncli_LDADD = \
11
 
  $(top_builddir)/libtransmission/libtransmission.a \
12
 
  $(top_builddir)/third-party/libevent/libevent_core.la \
13
 
  $(top_builddir)/third-party/libnatpmp/libnatpmp.a \
14
 
  $(top_builddir)/third-party/miniupnp/libminiupnp.a \
15
 
  $(top_builddir)/third-party/shttpd/libshttpd.a \
16
 
  $(INTLLIBS) \
17
 
  $(OPENSSL_LIBS) \
18
 
  $(LIBCURL_LIBS) \
19
 
  $(PTHREAD_LIBS) \
20
 
  -lm
 
19
    $(top_builddir)/libtransmission/libtransmission.a \
 
20
    $(top_builddir)/third-party/libevent/libevent.la \
 
21
    $(top_builddir)/third-party/libnatpmp/libnatpmp.a \
 
22
    $(top_builddir)/third-party/miniupnp/libminiupnp.a \
 
23
    $(INTLLIBS) \
 
24
    $(LIBCURL_LIBS) \
 
25
    $(ZLIB_LIBS) \
 
26
    $(OPENSSL_LIBS) \
 
27
    $(PTHREAD_LIBS) \
 
28
    -lm
21
29