forked from premiere/premiere-libtorrent
371 lines
8.8 KiB
Plaintext
Executable File
371 lines
8.8 KiB
Plaintext
Executable File
# This Jamfile requires boost-build v2 to build.
|
|
# The version shipped with boost 1.34.0
|
|
|
|
import modules ;
|
|
import os ;
|
|
import errors ;
|
|
import feature : feature ;
|
|
|
|
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
|
|
|
|
ECHO "BOOST_ROOT =" $(BOOST_ROOT) ;
|
|
ECHO "OS =" [ os.name ] ;
|
|
|
|
if $(BOOST_ROOT)
|
|
{
|
|
use-project /boost : $(BOOST_ROOT) ;
|
|
}
|
|
|
|
# rule for linking the correct libraries depending
|
|
# on features and target-os
|
|
rule linking ( properties * )
|
|
{
|
|
local result ;
|
|
|
|
# openssl libraries, if enabled
|
|
if <openssl>sha-1 in $(properties)
|
|
|| <openssl>pe in $(properties)
|
|
{
|
|
# exclude gcc from a regular windows build to make mingw
|
|
# link against the regular unix library name
|
|
|
|
if <target-os>windows in $(properties)
|
|
{
|
|
result += <library>gdi32 ;
|
|
}
|
|
|
|
if <target-os>windows in $(properties) && ! <toolset>gcc in $(properties)
|
|
{
|
|
result += <library>ssleay32
|
|
<library>libeay32
|
|
<library>advapi32
|
|
<library>user32
|
|
<library>shell32
|
|
;
|
|
}
|
|
else
|
|
{
|
|
result += <library>crypto <library>ssl ;
|
|
}
|
|
}
|
|
|
|
if <geoip>shared in $(properties)
|
|
{
|
|
result += <library>GeoIP ;
|
|
}
|
|
|
|
# socket functions on windows require winsock libraries
|
|
if <target-os>windows in $(properties)
|
|
|| <target-os>cygwin in $(properties)
|
|
{
|
|
result += <library>ws2_32
|
|
<library>wsock32
|
|
<define>WIN32_LEAN_AND_MEAN
|
|
<define>_WIN32_WINNT=0x0500
|
|
<define>__USE_W32_SOCKETS
|
|
<define>WIN32
|
|
<define>_WIN32
|
|
;
|
|
}
|
|
|
|
if <test-coverage>on in $(properties)
|
|
&& ( <toolset>gcc in $(properties)
|
|
|| <toolset>darwin in $(properties) )
|
|
{
|
|
result += <cxxflags>-fprofile-arcs <cxxflags>-ftest-coverage ;
|
|
}
|
|
|
|
# clock_gettime on linux requires librt
|
|
if <need-librt>yes in $(properties)
|
|
{
|
|
result += <library>rt ;
|
|
}
|
|
|
|
if <boost>system in $(properties)
|
|
{
|
|
result += <library>boost_filesystem
|
|
<library>boost_thread <library>boost_iostreams
|
|
;
|
|
}
|
|
|
|
if <toolset>gcc in $(properties)
|
|
&& <target-os>linux in $(properties)
|
|
&& <variant>debug in $(properties)
|
|
{
|
|
# for backtraces in assertion failures
|
|
# which only works on ELF targets with gcc
|
|
result += <linkflags>-export-dynamic <cxxflags>-rdynamic ;
|
|
}
|
|
|
|
if <boost>source in $(properties)
|
|
{
|
|
result += <library>/boost/thread//boost_thread
|
|
<library>/boost/filesystem//boost_filesystem
|
|
<library>/boost/iostreams//boost_iostreams
|
|
<include>$(BOOST_ROOT)
|
|
<define>BOOST_ALL_NO_LIB
|
|
;
|
|
}
|
|
|
|
return $(result) ;
|
|
}
|
|
|
|
# rule for adding the right source files
|
|
# depending on target-os and features
|
|
rule building ( properties * )
|
|
{
|
|
local result ;
|
|
|
|
if ( <target-os>linux in $(properties)
|
|
|| <target-os>darwin in $(properties) )
|
|
&& ( <toolset>gcc in $(properties)
|
|
|| <toolset>darwin in $(properties) )
|
|
{
|
|
result += <source>src/assert.cpp ;
|
|
}
|
|
|
|
if <geoip>static in $(properties)
|
|
{
|
|
result += <source>src/GeoIP.c ;
|
|
}
|
|
|
|
if <openssl>off in $(properties)
|
|
{
|
|
result += <source>src/sha1.cpp ;
|
|
}
|
|
else
|
|
{
|
|
if <openssl>pe in $(properties)
|
|
{
|
|
result += <source>src/pe_crypto.cpp ;
|
|
}
|
|
}
|
|
|
|
if <target-os>windows in $(properties)
|
|
{
|
|
result += <source>src/file_win.cpp ;
|
|
}
|
|
else
|
|
{
|
|
result += <source>src/file.cpp ;
|
|
}
|
|
|
|
if <memdebug>on in $(properties)
|
|
{
|
|
result += <source>src/memdebug.cpp ;
|
|
}
|
|
|
|
return $(result) ;
|
|
}
|
|
|
|
feature need-librt : no yes : composite propagated link-incompatible ;
|
|
|
|
feature pool-allocators : on off : composite propagated link-incompatible ;
|
|
feature.compose <pool-allocators>off : <define>TORRENT_DISABLE_POOL_ALLOCATOR ;
|
|
|
|
feature geoip : off static shared : composite propagated link-incompatible ;
|
|
feature.compose <geoip>off : <define>TORRENT_DISABLE_GEO_IP ;
|
|
|
|
feature bandwidth-limit-logging : off on : composite propagated link-incompatible ;
|
|
feature.compose <bandwidth-limit-logging>on : <define>TORRENT_VERBOSE_BANDWIDTH_LIMIT ;
|
|
|
|
feature invariant-checks : on off : composite propagated link-incompatible ;
|
|
feature.compose <invariant-checks>off : <define>TORRENT_DISABLE_INVARIANT_CHECKS ;
|
|
|
|
feature disk-stats : off on : composite propagated link-incompatible ;
|
|
feature.compose <disk-stats>on : <define>TORRENT_DISK_STATS ;
|
|
|
|
feature memdebug : off on : composite propagated ;
|
|
feature.compose <memdebug>on : <define>TORRENT_MEMDEBUG ;
|
|
|
|
feature logging : none default errors verbose : composite propagated link-incompatible ;
|
|
feature.compose <logging>default : <define>TORRENT_LOGGING ;
|
|
feature.compose <logging>errors : <define>TORRENT_ERROR_LOGGING ;
|
|
feature.compose <logging>verbose : <define>TORRENT_VERBOSE_LOGGING ;
|
|
|
|
feature dht-support : on off logging : composite propagated link-incompatible ;
|
|
feature.compose <dht-support>off : <define>TORRENT_DISABLE_DHT ;
|
|
feature.compose <dht-support>logging : <define>TORRENT_DHT_VERBOSE_LOGGING ;
|
|
|
|
feature openssl : pe sha-1 off : composite propagated link-incompatible ;
|
|
feature.compose <openssl>pe : <define>TORRENT_USE_OPENSSL ;
|
|
feature.compose <openssl>sha-1 : <define>TORRENT_USE_OPENSSL <define>TORRENT_DISABLE_ENCRYPTION ;
|
|
feature.compose <openssl>off : <define>TORRENT_DISABLE_ENCRYPTION ;
|
|
|
|
feature resolve-countries : on off : composite propagated link-incompatible ;
|
|
feature.compose <resolve-countries>off : <define>TORRENT_DISABLE_RESOLVE_COUNTRIES ;
|
|
|
|
feature character-set : ansi unicode : composite propagated link-incompatible ;
|
|
feature.compose <character-set>unicode : <define>_UNICODE <define>UNICODE ;
|
|
|
|
feature zlib : shipped system : composite propagated link-incompatible ;
|
|
|
|
feature statistics : off on : composite propagated link-incompatible ;
|
|
feature.compose <statistics>on : <define>TORRENT_STATS ;
|
|
|
|
feature upnp-logging : off on : composite propagated link-incompatible ;
|
|
feature.compose <upnp-logging>on : <define>TORRENT_UPNP_LOGGING ;
|
|
|
|
feature boost : system source : link-incompatible propagated ;
|
|
|
|
feature debug-iterators : off on : composite propagated link-incompatible ;
|
|
feature.compose <debug-iterators>on : <define>_SCL_SECURE=1 <define>_GLIBCXX_DEBUG ;
|
|
|
|
feature test-coverage : off on : composite propagated ;
|
|
|
|
# required for openssl on windows
|
|
lib ssleay32 : : <name>ssleay32 ;
|
|
lib libeay32 : : <name>libeay32 ;
|
|
lib advapi32 : : <name>Advapi32 ;
|
|
lib user32 : : <name>User32 ;
|
|
lib shell32 : : <name>shell32 ;
|
|
lib gdi32 : : <name>gdi32 ;
|
|
|
|
local library-search-path = <search>/opt/local/lib <search>/usr/lib <search>/usr/local/lib <search>/sw/lib ;
|
|
|
|
lib filesystem : : <name>boost_filesystem $(library-search-path) ;
|
|
lib thread : : <name>boost_thread $(library-search-path) ;
|
|
|
|
# openssl on linux/bsd/macos etc.
|
|
lib crypto : : <name>crypto ;
|
|
lib ssl : : <name>ssl ;
|
|
|
|
# time functions used on linux require librt
|
|
lib librt : : <name>rt ;
|
|
|
|
# libz
|
|
lib zlib-target : : <name>z ;
|
|
|
|
# socket libraries on windows
|
|
lib wsock32 : : <name>wsock32 ;
|
|
lib ws2_32 : : <name>ws2_32 ;
|
|
|
|
SOURCES =
|
|
alert
|
|
assert
|
|
connection_queue
|
|
disk_buffer_holder
|
|
entry
|
|
lazy_bdecode
|
|
escape_string
|
|
gzip
|
|
http_connection
|
|
http_stream
|
|
http_parser
|
|
identify_client
|
|
ip_filter
|
|
peer_connection
|
|
bt_peer_connection
|
|
web_peer_connection
|
|
instantiate_connection
|
|
natpmp
|
|
piece_picker
|
|
policy
|
|
session
|
|
session_impl
|
|
socks4_stream
|
|
socks5_stream
|
|
stat
|
|
storage
|
|
mapped_storage
|
|
torrent
|
|
torrent_handle
|
|
torrent_info
|
|
tracker_manager
|
|
http_tracker_connection
|
|
udp_tracker_connection
|
|
sha1
|
|
udp_socket
|
|
upnp
|
|
logger
|
|
file_pool
|
|
lsd
|
|
disk_io_thread
|
|
enum_net
|
|
broadcast_socket
|
|
magnet_uri
|
|
|
|
# -- extensions --
|
|
metadata_transfer
|
|
ut_pex
|
|
ut_metadata
|
|
smart_ban
|
|
;
|
|
|
|
KADEMLIA_SOURCES =
|
|
kademlia/closest_nodes
|
|
kademlia/dht_tracker
|
|
kademlia/node
|
|
kademlia/refresh
|
|
kademlia/rpc_manager
|
|
kademlia/find_data
|
|
kademlia/node_id
|
|
kademlia/routing_table
|
|
kademlia/traversal_algorithm
|
|
;
|
|
|
|
ZLIB_SOURCES =
|
|
adler32
|
|
compress
|
|
crc32
|
|
deflate
|
|
gzio
|
|
infback
|
|
inffast
|
|
inflate
|
|
inftrees
|
|
trees
|
|
uncompr
|
|
zutil
|
|
;
|
|
|
|
local usage-requirements =
|
|
<include>./include
|
|
<include>./include/libtorrent
|
|
<zlib>shipped:<include>./zlib
|
|
<variant>release:<define>NDEBUG
|
|
<define>_FILE_OFFSET_BITS=64
|
|
<define>BOOST_MULTI_INDEX_DISABLE_SERIALIZATION
|
|
<conditional>@linking
|
|
<zlib>system:<library>zlib-target
|
|
# these compiler settings just makes the compiler standard conforming
|
|
<toolset>msvc:<cxxflags>/Zc:wchar_t
|
|
<toolset>msvc:<cxxflags>/Zc:forScope
|
|
# disable bogus deprecation warnings on msvc8
|
|
<toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
|
|
<toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
|
|
# msvc optimizations
|
|
<toolset>msvc,<variant>release:<linkflags>/OPT:ICF=5
|
|
<toolset>msvc,<variant>release:<linkflags>/OPT:REF
|
|
# disable warning C4503: decorated name length exceeded, name was truncated
|
|
<toolset>msvc:<cxxflags>/wd4503
|
|
# disable some warnings for gcc
|
|
<toolset>gcc:<cxxflags>-fno-strict-aliasing
|
|
<toolset>gcc:<cxxflags>-Wno-missing-braces
|
|
;
|
|
|
|
project torrent ;
|
|
|
|
lib torrent
|
|
|
|
: # sources
|
|
src/$(SOURCES).cpp
|
|
|
|
: # requirements
|
|
<define>BOOST_THREAD_USE_LIB
|
|
<threading>multi
|
|
<link>shared:<define>TORRENT_BUILDING_SHARED
|
|
<dht-support>on:<source>src/$(KADEMLIA_SOURCES).cpp
|
|
<dht-support>logging:<source>src/$(KADEMLIA_SOURCES).cpp
|
|
<zlib>shipped:<source>zlib/$(ZLIB_SOURCES).c
|
|
<conditional>@building
|
|
$(usage-requirements)
|
|
|
|
: # default build
|
|
<link>static
|
|
|
|
: # usage requirements
|
|
$(usage-requirements)
|
|
;
|
|
|