configure.ac: drop dependencies on boost.filesystem and boost.thread libraries

and add some new files to makefiles.
This commit is contained in:
cristiangreco
2009-11-02 02:10:38 +00:00
parent 1c28444f94
commit bba63021c0
8 changed files with 8 additions and 273 deletions

View File

@@ -11,7 +11,6 @@ EXTRA_DIST = \
src/datetime.cpp \
src/entry.cpp \
src/extensions.cpp \
src/filesystem.cpp \
src/fingerprint.cpp \
src/gil.hpp \
src/ip_filter.cpp \

View File

@@ -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.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',
version='@PACKAGE_VERSION@',