~ubuntu-branches/ubuntu/wily/libtorrent/wily-proposed

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rogério Brito
  • Date: 2011-03-20 01:06:18 UTC
  • mfrom: (1.1.13 upstream) (4.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110320010618-g3wyylccqzqko73c
Tags: 0.12.7-5
* Use Steinar's "real" patch for IPv6. Addresses #490277, #618275,
  and Closes: #617791.
* Adapt libtorrent-0.12.6-ipv6-07.patch. It FTBFS otherwise.
* Add proper attibution to the IPv6 patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = \
 
2
        torrent \
 
3
        data \
 
4
        dht \
 
5
        download \
 
6
        net \
 
7
        protocol \
 
8
        tracker \
 
9
        utils
 
10
 
 
11
lib_LTLIBRARIES = libtorrent.la
 
12
 
 
13
libtorrent_la_LDFLAGS = -version-info $(LIBTORRENT_INTERFACE_VERSION_INFO)
 
14
libtorrent_la_LIBADD = \
 
15
        torrent/libsub_torrent.la \
 
16
        torrent/data/libsub_torrentdata.la \
 
17
        torrent/peer/libsub_torrentpeer.la \
 
18
        data/libsub_data.la \
 
19
        dht/libsub_dht.la \
 
20
        download/libsub_download.la \
 
21
        net/libsub_net.la \
 
22
        protocol/libsub_protocol.la \
 
23
        tracker/libsub_tracker.la \
 
24
        utils/libsub_utils.la
 
25
 
 
26
libtorrent_la_SOURCES = \
 
27
        globals.cc \
 
28
        globals.h \
 
29
        manager.cc \
 
30
        manager.h \
 
31
        resource_manager.cc \
 
32
        resource_manager.h
 
33
 
 
34
INCLUDES = -I$(srcdir) -I$(top_srcdir)