mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-05 17:52:29 +00:00
6753b45627
* Fixed inconsistent handling of d.get_base_path for single and multi-torrents. Now both return the cached path even though the torrent is closed and a new root directory set. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1085 e378c898-3ddf-0310-93e7-cc216c733640
64 lines
1.4 KiB
Plaintext
64 lines
1.4 KiB
Plaintext
AC_INIT(rtorrent, 0.8.4, jaris@ifi.uio.no)
|
|
|
|
AM_INIT_AUTOMAKE
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
AC_PROG_CXX
|
|
AC_PROG_LIBTOOL
|
|
|
|
TORRENT_CHECK_CXXFLAGS()
|
|
TORRENT_ENABLE_DEBUG()
|
|
TORRENT_ENABLE_EXTRA_DEBUG()
|
|
TORRENT_ENABLE_WERROR()
|
|
|
|
TORRENT_DISABLE_IPV6
|
|
|
|
AC_SYS_LARGEFILE
|
|
|
|
TORRENT_CHECK_EXECINFO()
|
|
TORRENT_OTFD()
|
|
|
|
TORRENT_ENABLE_ARCH
|
|
TORRENT_WITH_SYSROOT
|
|
|
|
TORRENT_WITHOUT_VARIABLE_FDSET()
|
|
TORRENT_WITHOUT_NCURSESW()
|
|
TORRENT_WITHOUT_STATVFS()
|
|
TORRENT_WITHOUT_STATFS()
|
|
|
|
PKG_CHECK_MODULES(sigc, sigc++-2.0,
|
|
CXXFLAGS="$CXXFLAGS $sigc_CFLAGS";
|
|
LIBS="$LIBS $sigc_LIBS")
|
|
|
|
PKG_CHECK_MODULES(libcurl, libcurl >= 7.15.4,
|
|
CXXFLAGS="$CXXFLAGS $libcurl_CFLAGS";
|
|
LIBS="$LIBS $libcurl_LIBS")
|
|
|
|
PKG_CHECK_MODULES(libtorrent, libtorrent >= 0.12.4,
|
|
CXXFLAGS="$CXXFLAGS $libtorrent_CFLAGS";
|
|
LIBS="$LIBS $libtorrent_LIBS")
|
|
|
|
AC_LANG_PUSH(C++)
|
|
TORRENT_WITH_XMLRPC_C
|
|
AC_LANG_POP(C++)
|
|
|
|
AC_DEFINE(HAVE_CONFIG_H, 1, true if config.h was included)
|
|
AC_DEFINE(USER_AGENT, [std::string(PACKAGE "/" VERSION "/") + torrent::version()], Http user agent)
|
|
|
|
CC_ATTRIBUTE_UNUSED(
|
|
AC_DEFINE([__UNUSED], [__attribute__((unused))], [Wrapper around unused attribute]),
|
|
AC_DEFINE([__UNUSED], [], [Null-wrapper if unused attribute is unsupported])
|
|
)
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
doc/Makefile
|
|
src/Makefile
|
|
src/core/Makefile
|
|
src/display/Makefile
|
|
src/input/Makefile
|
|
src/rpc/Makefile
|
|
src/ui/Makefile
|
|
src/utils/Makefile
|
|
])
|