forked from premiere/premiere-libtorrent
Revert changeset introduced in r3424 and add a specific define to disable
boost.serialization for python bindings build.
This commit is contained in:
parent
242967a64d
commit
ecdf83547e
|
@ -79,6 +79,6 @@ setup( name='python-libtorrent',
|
||||||
include_dirs = ['@top_srcdir@/include','@top_srcdir@/include/libtorrent'] + parse_cmd(extra_cmd, '-I'),
|
include_dirs = ['@top_srcdir@/include','@top_srcdir@/include/libtorrent'] + parse_cmd(extra_cmd, '-I'),
|
||||||
library_dirs = ['@top_builddir@/src/.libs'] + parse_cmd(extra_cmd, '-L'),
|
library_dirs = ['@top_builddir@/src/.libs'] + parse_cmd(extra_cmd, '-L'),
|
||||||
extra_link_args = '@LDFLAGS@'.split() + arch(),
|
extra_link_args = '@LDFLAGS@'.split() + arch(),
|
||||||
extra_compile_args = parse_cmd(extra_cmd, '-D', True) + arch(),
|
extra_compile_args = parse_cmd(extra_cmd, '-D', True) + arch() + ['-DBOOST_MULTI_INDEX_DISABLE_SERIALIZATION'],
|
||||||
libraries = ['torrent-rasterbar','@BOOST_PYTHON_LIB@'] + parse_cmd(extra_cmd, '-l'))],
|
libraries = ['torrent-rasterbar','@BOOST_PYTHON_LIB@'] + parse_cmd(extra_cmd, '-l'))],
|
||||||
)
|
)
|
||||||
|
|
|
@ -172,7 +172,7 @@ AC_ARG_WITH(
|
||||||
[[logging=none]]
|
[[logging=none]]
|
||||||
)
|
)
|
||||||
|
|
||||||
COMPILETIME_OPTIONS="-DBOOST_MULTI_INDEX_DISABLE_SERIALIZATION "
|
COMPILETIME_OPTIONS=""
|
||||||
dnl Check the value for the --with-logging switch
|
dnl Check the value for the --with-logging switch
|
||||||
AC_MSG_CHECKING([what form of logging to use])
|
AC_MSG_CHECKING([what form of logging to use])
|
||||||
case "$logging" in
|
case "$logging" in
|
||||||
|
|
Loading…
Reference in New Issue