configure.ac: drop dependencies on boost.filesystem and boost.thread libraries
and add some new files to makefiles.
This commit is contained in:
parent
1c28444f94
commit
bba63021c0
|
@ -11,7 +11,6 @@ EXTRA_DIST = \
|
||||||
src/datetime.cpp \
|
src/datetime.cpp \
|
||||||
src/entry.cpp \
|
src/entry.cpp \
|
||||||
src/extensions.cpp \
|
src/extensions.cpp \
|
||||||
src/filesystem.cpp \
|
|
||||||
src/fingerprint.cpp \
|
src/fingerprint.cpp \
|
||||||
src/gil.hpp \
|
src/gil.hpp \
|
||||||
src/ip_filter.cpp \
|
src/ip_filter.cpp \
|
||||||
|
|
|
@ -62,7 +62,7 @@ if "OPT" in config_vars and "-Wstrict-prototypes" in config_vars["OPT"]:
|
||||||
source_list = os.listdir(os.path.join(os.path.dirname(__file__), "src"))
|
source_list = os.listdir(os.path.join(os.path.dirname(__file__), "src"))
|
||||||
source_list = [os.path.join("src", s) for s in source_list if s.endswith(".cpp")]
|
source_list = [os.path.join("src", s) for s in source_list if s.endswith(".cpp")]
|
||||||
|
|
||||||
extra_cmd = '@COMPILETIME_OPTIONS@ @CPPFLAGS@ @LIBS@ @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@ @BOOST_PYTHON_LIB@ @PTHREAD_LIBS@ @OPENSSL_LIBS@ @OPENSSL_LDFLAGS@ @OPENSSL_INCLUDES@'
|
extra_cmd = '@COMPILETIME_OPTIONS@ @CPPFLAGS@ @LIBS@ @BOOST_SYSTEM_LIB@ @BOOST_PYTHON_LIB@ @PTHREAD_LIBS@ @OPENSSL_LIBS@ @OPENSSL_LDFLAGS@ @OPENSSL_INCLUDES@'
|
||||||
|
|
||||||
setup( name='python-libtorrent',
|
setup( name='python-libtorrent',
|
||||||
version='@PACKAGE_VERSION@',
|
version='@PACKAGE_VERSION@',
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -109,14 +109,6 @@ AX_BOOST_SYSTEM()
|
||||||
AS_IF([test -z "$BOOST_SYSTEM_LIB"],
|
AS_IF([test -z "$BOOST_SYSTEM_LIB"],
|
||||||
[AC_MSG_ERROR(Boost.System library not found. Try using --with-boost-system=lib)])
|
[AC_MSG_ERROR(Boost.System library not found. Try using --with-boost-system=lib)])
|
||||||
|
|
||||||
AX_BOOST_FILESYSTEM()
|
|
||||||
AS_IF([test -z "$BOOST_FILESYSTEM_LIB"],
|
|
||||||
[AC_MSG_ERROR(Boost.Filesystem library not found. Try using --with-boost-filesystem=lib)])
|
|
||||||
|
|
||||||
AX_BOOST_THREAD()
|
|
||||||
AS_IF([test -z "$BOOST_THREAD_LIB"],
|
|
||||||
[AC_MSG_ERROR(Boost.Thread library not found. Try using --with-boost-thread=lib)])
|
|
||||||
|
|
||||||
CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS"
|
CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS"
|
||||||
LDFLAGS="$BOOST_LDFLAGS $LDFLAGS"
|
LDFLAGS="$BOOST_LDFLAGS $LDFLAGS"
|
||||||
|
|
||||||
|
@ -731,8 +723,6 @@ Boost libraries:
|
||||||
CPPFlags: ${BOOST_CPPFLAGS}
|
CPPFlags: ${BOOST_CPPFLAGS}
|
||||||
LDFlags: ${BOOST_LDFLAGS}
|
LDFlags: ${BOOST_LDFLAGS}
|
||||||
boost.system: ${BOOST_SYSTEM_LIB}
|
boost.system: ${BOOST_SYSTEM_LIB}
|
||||||
boost.filesystem: ${BOOST_FILESYSTEM_LIB}
|
|
||||||
boost.thread: ${BOOST_THREAD_LIB}
|
|
||||||
END
|
END
|
||||||
|
|
||||||
AS_IF([test "x$ARG_ENABLE_PYTHON_BINDING" = "xyes"], [
|
AS_IF([test "x$ARG_ENABLE_PYTHON_BINDING" = "xyes"], [
|
||||||
|
|
|
@ -24,8 +24,8 @@ nobase_include_HEADERS = \
|
||||||
connection_queue.hpp \
|
connection_queue.hpp \
|
||||||
ConvertUTF.h \
|
ConvertUTF.h \
|
||||||
create_torrent.hpp \
|
create_torrent.hpp \
|
||||||
debug.hpp \
|
|
||||||
deadline_timer.hpp \
|
deadline_timer.hpp \
|
||||||
|
debug.hpp \
|
||||||
disk_buffer_holder.hpp \
|
disk_buffer_holder.hpp \
|
||||||
disk_io_thread.hpp \
|
disk_io_thread.hpp \
|
||||||
entry.hpp \
|
entry.hpp \
|
||||||
|
@ -73,12 +73,13 @@ nobase_include_HEADERS = \
|
||||||
session_status.hpp \
|
session_status.hpp \
|
||||||
size_type.hpp \
|
size_type.hpp \
|
||||||
socket.hpp \
|
socket.hpp \
|
||||||
socket_type.hpp \
|
|
||||||
socket_io.hpp \
|
socket_io.hpp \
|
||||||
|
socket_type.hpp \
|
||||||
socks5_stream.hpp \
|
socks5_stream.hpp \
|
||||||
ssl_stream.hpp \
|
ssl_stream.hpp \
|
||||||
stat.hpp \
|
stat.hpp \
|
||||||
storage.hpp \
|
storage.hpp \
|
||||||
|
thread.hpp \
|
||||||
time.hpp \
|
time.hpp \
|
||||||
torrent_handle.hpp \
|
torrent_handle.hpp \
|
||||||
torrent.hpp \
|
torrent.hpp \
|
||||||
|
@ -108,8 +109,8 @@ nobase_include_HEADERS = \
|
||||||
kademlia/find_data.hpp \
|
kademlia/find_data.hpp \
|
||||||
kademlia/logging.hpp \
|
kademlia/logging.hpp \
|
||||||
kademlia/msg.hpp \
|
kademlia/msg.hpp \
|
||||||
kademlia/node_entry.hpp \
|
|
||||||
kademlia/node.hpp \
|
kademlia/node.hpp \
|
||||||
|
kademlia/node_entry.hpp \
|
||||||
kademlia/node_id.hpp \
|
kademlia/node_id.hpp \
|
||||||
kademlia/observer.hpp \
|
kademlia/observer.hpp \
|
||||||
kademlia/refresh.hpp \
|
kademlia/refresh.hpp \
|
||||||
|
|
|
@ -12,5 +12,5 @@ Name: libtorrent-rasterbar
|
||||||
Description: Bittorrent library.
|
Description: Bittorrent library.
|
||||||
Version: @VERSION@
|
Version: @VERSION@
|
||||||
Libs: -L${libdir} -ltorrent-rasterbar
|
Libs: -L${libdir} -ltorrent-rasterbar
|
||||||
Libs.private: @LIBS@ @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@ @PTHREAD_LIBS@ @OPENSSL_LIBS@
|
Libs.private: @LIBS@ @BOOST_SYSTEM_LIB@ @PTHREAD_LIBS@ @OPENSSL_LIBS@
|
||||||
Cflags: -I${includedir} -I${includedir}/libtorrent @COMPILETIME_OPTIONS@
|
Cflags: -I${includedir} -I${includedir}/libtorrent @COMPILETIME_OPTIONS@
|
||||||
|
|
|
@ -1,112 +0,0 @@
|
||||||
# ===========================================================================
|
|
||||||
# http://www.nongnu.org/autoconf-archive/ax_boost_filesystem.html
|
|
||||||
# ===========================================================================
|
|
||||||
#
|
|
||||||
# SYNOPSIS
|
|
||||||
#
|
|
||||||
# AX_BOOST_FILESYSTEM
|
|
||||||
#
|
|
||||||
# DESCRIPTION
|
|
||||||
#
|
|
||||||
# Test for Filesystem library from the Boost C++ libraries. The macro
|
|
||||||
# requires a preceding call to AX_BOOST_BASE. Further documentation is
|
|
||||||
# available at <http://randspringer.de/boost/index.html>.
|
|
||||||
#
|
|
||||||
# This macro calls:
|
|
||||||
#
|
|
||||||
# AC_SUBST(BOOST_FILESYSTEM_LIB)
|
|
||||||
#
|
|
||||||
# And sets:
|
|
||||||
#
|
|
||||||
# HAVE_BOOST_FILESYSTEM
|
|
||||||
#
|
|
||||||
# LICENSE
|
|
||||||
#
|
|
||||||
# Copyright (c) 2009 Thomas Porschberg <thomas@randspringer.de>
|
|
||||||
# Copyright (c) 2009 Michael Tindal
|
|
||||||
# Copyright (c) 2009 Roman Rybalko <libtorrent@romanr.info>
|
|
||||||
#
|
|
||||||
# Copying and distribution of this file, with or without modification, are
|
|
||||||
# permitted in any medium without royalty provided the copyright notice
|
|
||||||
# and this notice are preserved.
|
|
||||||
|
|
||||||
AC_DEFUN([AX_BOOST_FILESYSTEM],
|
|
||||||
[
|
|
||||||
AC_ARG_WITH([boost-filesystem],
|
|
||||||
AS_HELP_STRING([--with-boost-filesystem@<:@=special-lib@:>@],
|
|
||||||
[use the Filesystem library from boost - it is possible to specify a certain library for the linker
|
|
||||||
e.g. --with-boost-filesystem=boost_filesystem-gcc-mt ]),
|
|
||||||
[
|
|
||||||
if test "x$withval" = "xno"; then
|
|
||||||
want_boost="no"
|
|
||||||
elif test "x$withval" = "xyes"; then
|
|
||||||
want_boost="yes"
|
|
||||||
ax_boost_user_filesystem_lib=""
|
|
||||||
else
|
|
||||||
want_boost="yes"
|
|
||||||
ax_boost_user_filesystem_lib="$withval"
|
|
||||||
fi
|
|
||||||
],
|
|
||||||
[want_boost="yes"]
|
|
||||||
)
|
|
||||||
|
|
||||||
if test "x$want_boost" = "xyes"; then
|
|
||||||
AC_REQUIRE([AC_PROG_CC])
|
|
||||||
CPPFLAGS_SAVED="$CPPFLAGS"
|
|
||||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
|
|
||||||
export CPPFLAGS
|
|
||||||
|
|
||||||
LDFLAGS_SAVED="$LDFLAGS"
|
|
||||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
|
|
||||||
export LDFLAGS
|
|
||||||
|
|
||||||
LIBS_SAVED=$LIBS
|
|
||||||
LIBS="$LIBS $BOOST_SYSTEM_LIB"
|
|
||||||
export LIBS
|
|
||||||
|
|
||||||
AC_CACHE_CHECK(whether the Boost::Filesystem library is available,
|
|
||||||
ax_cv_boost_filesystem,
|
|
||||||
[AC_LANG_PUSH([C++])
|
|
||||||
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[@%:@include <boost/filesystem/path.hpp>]],
|
|
||||||
[[using namespace boost::filesystem;
|
|
||||||
path my_path( "foo/bar/data.txt" );
|
|
||||||
return 0;]]),
|
|
||||||
ax_cv_boost_filesystem=yes, ax_cv_boost_filesystem=no)
|
|
||||||
AC_LANG_POP([C++])
|
|
||||||
])
|
|
||||||
if test "x$ax_cv_boost_filesystem" = "xyes"; then
|
|
||||||
AC_DEFINE(HAVE_BOOST_FILESYSTEM,[1],[define if the Boost::Filesystem library is available])
|
|
||||||
BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'`
|
|
||||||
if test "x$ax_boost_user_filesystem_lib" = "x"; then
|
|
||||||
for libextension in `ls $BOOSTLIBDIR/libboost_filesystem*.{so,dylib,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_filesystem.*\)\.so.*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.a*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.dylib$;\1;'` ; do
|
|
||||||
ax_lib=${libextension}
|
|
||||||
AC_CHECK_LIB($ax_lib, exit,
|
|
||||||
[BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break],
|
|
||||||
[link_filesystem="no"])
|
|
||||||
done
|
|
||||||
if test "x$link_program_options" != "xyes"; then
|
|
||||||
for libextension in `ls $BOOSTLIBDIR/boost_filesystem*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_filesystem.*\)\.dll.*$;\1;' -e 's;^\(boost_filesystem.*\)\.a*$;\1;'` ; do
|
|
||||||
ax_lib=${libextension}
|
|
||||||
AC_CHECK_LIB($ax_lib, exit,
|
|
||||||
[BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break],
|
|
||||||
[link_filesystem="no"])
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do
|
|
||||||
AC_CHECK_LIB($ax_lib, exit,
|
|
||||||
[BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break],
|
|
||||||
[link_filesystem="no"])
|
|
||||||
done
|
|
||||||
|
|
||||||
fi
|
|
||||||
if test "x$link_filesystem" != "xyes"; then
|
|
||||||
AC_MSG_ERROR(Could not link against $ax_lib !)
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
CPPFLAGS="$CPPFLAGS_SAVED"
|
|
||||||
LDFLAGS="$LDFLAGS_SAVED"
|
|
||||||
LIBS="$LIBS_SAVED"
|
|
||||||
fi
|
|
||||||
])
|
|
|
@ -1,143 +0,0 @@
|
||||||
# ===========================================================================
|
|
||||||
# http://www.nongnu.org/autoconf-archive/ax_boost_thread.html
|
|
||||||
# ===========================================================================
|
|
||||||
#
|
|
||||||
# SYNOPSIS
|
|
||||||
#
|
|
||||||
# AX_BOOST_THREAD
|
|
||||||
#
|
|
||||||
# DESCRIPTION
|
|
||||||
#
|
|
||||||
# Test for Thread library from the Boost C++ libraries. The macro requires
|
|
||||||
# a preceding call to AX_BOOST_BASE. Further documentation is available at
|
|
||||||
# <http://randspringer.de/boost/index.html>.
|
|
||||||
#
|
|
||||||
# This macro calls:
|
|
||||||
#
|
|
||||||
# AC_SUBST(BOOST_THREAD_LIB)
|
|
||||||
#
|
|
||||||
# And sets:
|
|
||||||
#
|
|
||||||
# HAVE_BOOST_THREAD
|
|
||||||
#
|
|
||||||
# LICENSE
|
|
||||||
#
|
|
||||||
# Copyright (c) 2009 Thomas Porschberg <thomas@randspringer.de>
|
|
||||||
# Copyright (c) 2009 Michael Tindal
|
|
||||||
#
|
|
||||||
# Copying and distribution of this file, with or without modification, are
|
|
||||||
# permitted in any medium without royalty provided the copyright notice
|
|
||||||
# and this notice are preserved.
|
|
||||||
|
|
||||||
AC_DEFUN([AX_BOOST_THREAD],
|
|
||||||
[
|
|
||||||
AC_ARG_WITH([boost-thread],
|
|
||||||
AS_HELP_STRING([--with-boost-thread@<:@=special-lib@:>@],
|
|
||||||
[use the Thread library from boost - it is possible to specify a certain library for the linker
|
|
||||||
e.g. --with-boost-thread=boost_thread-gcc-mt ]),
|
|
||||||
[
|
|
||||||
if test "x$withval" = "xno"; then
|
|
||||||
want_boost="no"
|
|
||||||
elif test "x$withval" = "xyes"; then
|
|
||||||
want_boost="yes"
|
|
||||||
ax_boost_user_thread_lib=""
|
|
||||||
else
|
|
||||||
want_boost="yes"
|
|
||||||
ax_boost_user_thread_lib="$withval"
|
|
||||||
fi
|
|
||||||
],
|
|
||||||
[want_boost="yes"]
|
|
||||||
)
|
|
||||||
|
|
||||||
if test "x$want_boost" = "xyes"; then
|
|
||||||
AC_REQUIRE([AC_PROG_CC])
|
|
||||||
AC_REQUIRE([AC_CANONICAL_BUILD])
|
|
||||||
CPPFLAGS_SAVED="$CPPFLAGS"
|
|
||||||
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
|
|
||||||
export CPPFLAGS
|
|
||||||
|
|
||||||
LDFLAGS_SAVED="$LDFLAGS"
|
|
||||||
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
|
|
||||||
export LDFLAGS
|
|
||||||
|
|
||||||
AC_CACHE_CHECK(whether the Boost::Thread library is available,
|
|
||||||
ax_cv_boost_thread,
|
|
||||||
[AC_LANG_PUSH([C++])
|
|
||||||
CXXFLAGS_SAVE=$CXXFLAGS
|
|
||||||
|
|
||||||
dnl if test "x$build_os" = "xsolaris" ; then
|
|
||||||
dnl CXXFLAGS="-pthreads $CXXFLAGS"
|
|
||||||
dnl elif test "x$build_os" = "xming32" ; then
|
|
||||||
dnl CXXFLAGS="-mthreads $CXXFLAGS"
|
|
||||||
dnl else
|
|
||||||
dnl CXXFLAGS="-pthread $CXXFLAGS"
|
|
||||||
dnl fi
|
|
||||||
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[@%:@include <boost/thread/thread.hpp>]],
|
|
||||||
[[boost::thread_group thrds;
|
|
||||||
return 0;]]),
|
|
||||||
ax_cv_boost_thread=yes, ax_cv_boost_thread=no)
|
|
||||||
CXXFLAGS=$CXXFLAGS_SAVE
|
|
||||||
AC_LANG_POP([C++])
|
|
||||||
])
|
|
||||||
if test "x$ax_cv_boost_thread" = "xyes"; then
|
|
||||||
dnl if test "x$build_os" = "xsolaris" ; then
|
|
||||||
dnl BOOST_CPPFLAGS="-pthreads $BOOST_CPPFLAGS"
|
|
||||||
dnl elif test "x$build_os" = "xming32" ; then
|
|
||||||
dnl BOOST_CPPFLAGS="-mthreads $BOOST_CPPFLAGS"
|
|
||||||
dnl else
|
|
||||||
dnl BOOST_CPPFLAGS="-pthread $BOOST_CPPFLAGS"
|
|
||||||
dnl fi
|
|
||||||
|
|
||||||
AC_SUBST(BOOST_CPPFLAGS)
|
|
||||||
|
|
||||||
AC_DEFINE(HAVE_BOOST_THREAD,[1],[define if the Boost::Thread library is available])
|
|
||||||
BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'`
|
|
||||||
|
|
||||||
LDFLAGS_SAVE=$LDFLAGS
|
|
||||||
case "x$build_os" in
|
|
||||||
*bsd* )
|
|
||||||
LDFLAGS="-pthread $LDFLAGS"
|
|
||||||
break;
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
if test "x$ax_boost_user_thread_lib" = "x"; then
|
|
||||||
for libextension in `ls $BOOSTLIBDIR/libboost_thread*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_thread.*\)\.so.*$;\1;'` `ls $BOOSTLIBDIR/libboost_thread*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_thread.*\)\.a*$;\1;'`; do
|
|
||||||
ax_lib=${libextension}
|
|
||||||
AC_CHECK_LIB($ax_lib, exit,
|
|
||||||
[BOOST_THREAD_LIB="-l$ax_lib"; AC_SUBST(BOOST_THREAD_LIB) link_thread="yes"; break],
|
|
||||||
[link_thread="no"])
|
|
||||||
done
|
|
||||||
if test "x$link_thread" != "xyes"; then
|
|
||||||
for libextension in `ls $BOOSTLIBDIR/boost_thread*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_thread.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_thread*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_thread.*\)\.a*$;\1;'` ; do
|
|
||||||
ax_lib=${libextension}
|
|
||||||
AC_CHECK_LIB($ax_lib, exit,
|
|
||||||
[BOOST_THREAD_LIB="-l$ax_lib"; AC_SUBST(BOOST_THREAD_LIB) link_thread="yes"; break],
|
|
||||||
[link_thread="no"])
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
else
|
|
||||||
for ax_lib in $ax_boost_user_thread_lib boost_thread-$ax_boost_user_thread_lib; do
|
|
||||||
AC_CHECK_LIB($ax_lib, exit,
|
|
||||||
[BOOST_THREAD_LIB="-l$ax_lib"; AC_SUBST(BOOST_THREAD_LIB) link_thread="yes"; break],
|
|
||||||
[link_thread="no"])
|
|
||||||
done
|
|
||||||
|
|
||||||
fi
|
|
||||||
if test "x$link_thread" = "xno"; then
|
|
||||||
AC_MSG_ERROR(Could not link against $ax_lib !)
|
|
||||||
else
|
|
||||||
case "x$build_os" in
|
|
||||||
*bsd* )
|
|
||||||
BOOST_LDFLAGS="-pthread $BOOST_LDFLAGS"
|
|
||||||
break;
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
CPPFLAGS="$CPPFLAGS_SAVED"
|
|
||||||
LDFLAGS="$LDFLAGS_SAVED"
|
|
||||||
fi
|
|
||||||
])
|
|
|
@ -63,8 +63,8 @@ libtorrent_rasterbar_la_SOURCES = \
|
||||||
session_impl.cpp \
|
session_impl.cpp \
|
||||||
sha1.cpp \
|
sha1.cpp \
|
||||||
smart_ban.cpp \
|
smart_ban.cpp \
|
||||||
socks5_stream.cpp \
|
|
||||||
socket_io.cpp \
|
socket_io.cpp \
|
||||||
|
socks5_stream.cpp \
|
||||||
stat.cpp \
|
stat.cpp \
|
||||||
storage.cpp \
|
storage.cpp \
|
||||||
torrent.cpp \
|
torrent.cpp \
|
||||||
|
@ -85,7 +85,7 @@ libtorrent_rasterbar_la_SOURCES = \
|
||||||
libtorrent_rasterbar_la_LDFLAGS = -version-info $(INTERFACE_VERSION_INFO)
|
libtorrent_rasterbar_la_LDFLAGS = -version-info $(INTERFACE_VERSION_INFO)
|
||||||
|
|
||||||
#libtorrent_rasterbar_la_LIBADD = @ZLIB@ @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@ @OPENSSL_LIBS@
|
#libtorrent_rasterbar_la_LIBADD = @ZLIB@ @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@ @OPENSSL_LIBS@
|
||||||
libtorrent_rasterbar_la_LIBADD = @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@ @OPENSSL_LIBS@
|
libtorrent_rasterbar_la_LIBADD = @BOOST_SYSTEM_LIB@ @OPENSSL_LIBS@
|
||||||
|
|
||||||
#libtorrent_rasterbar_la_LIBADD = @ZLIB@
|
#libtorrent_rasterbar_la_LIBADD = @ZLIB@
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue