diff --git a/include/Makefile.am b/include/Makefile.am index 010a2b181..eef977804 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,6 +1,5 @@ nobase_include_HEADERS = libtorrent/alert.hpp \ libtorrent/alert_types.hpp \ -libtorrent/allocate_resources.hpp \ libtorrent/bandwidth_manager.hpp \ libtorrent/bencode.hpp \ libtorrent/buffer.hpp \ @@ -40,7 +39,6 @@ libtorrent/piece_picker.hpp \ libtorrent/policy.hpp \ libtorrent/proxy_base.hpp \ libtorrent/random_sample.hpp \ -libtorrent/resource_request.hpp \ libtorrent/session.hpp \ libtorrent/session_settings.hpp \ libtorrent/session_status.hpp \ @@ -62,7 +60,6 @@ libtorrent/xml_parse.hpp \ libtorrent/variant_stream.hpp \ libtorrent/version.hpp \ libtorrent/time.hpp \ -libtorrent/aux_/allocate_resources_impl.hpp \ libtorrent/aux_/session_impl.hpp \ libtorrent/extensions/metadata_transfer.hpp \ libtorrent/extensions/ut_pex.hpp \ diff --git a/src/Makefile.am b/src/Makefile.am index fabe68b65..0cee29b46 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,8 +12,7 @@ kademlia/rpc_manager.cpp \ kademlia/traversal_algorithm.cpp endif -libtorrent_la_SOURCES = allocate_resources.cpp \ -entry.cpp escape_string.cpp \ +libtorrent_la_SOURCES = entry.cpp escape_string.cpp \ peer_connection.cpp bt_peer_connection.cpp web_peer_connection.cpp \ natpmp.cpp piece_picker.cpp policy.cpp session.cpp session_impl.cpp sha1.cpp \ stat.cpp storage.cpp torrent.cpp torrent_handle.cpp pe_crypto.cpp \ @@ -28,8 +27,6 @@ $(kademlia_sources) noinst_HEADERS = \ $(top_srcdir)/include/libtorrent/alert.hpp \ $(top_srcdir)/include/libtorrent/alert_types.hpp \ -$(top_srcdir)/include/libtorrent/allocate_resources.hpp \ -$(top_srcdir)/include/libtorrent/aux_/allocate_resources_impl.hpp \ $(top_srcdir)/include/libtorrent/aux_/session_impl.hpp \ $(top_srcdir)/include/libtorrent/bandwidth_manager.hpp \ $(top_srcdir)/include/libtorrent/bencode.hpp \