mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-08 19:22:29 +00:00
d04adf81ae
the problem where doing hash checking of completed torrents would cause wrong messages to be sent. Added option to the client for opening a random port in the supplied port range. Cleaned up ui::Download and ui::DownloadList handling of throttle keys and status bar. Added 60s timeout for handshakes. Added ignore key function to input::Bindings. Made the time span of torrent::Rate configurable. Seperate torrent::Rate object for quick and slow time span in torrent::ThrottleControl. Also limited the amount the throttle could over-allocate per tick, not completely fixed. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@480 e378c898-3ddf-0310-93e7-cc216c733640
39 lines
790 B
Plaintext
39 lines
790 B
Plaintext
AC_INIT(rtorrent, 0.2.7, jaris@ifi.uio.no)
|
|
|
|
AM_INIT_AUTOMAKE
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
sinclude(scripts/checks.m4)
|
|
sinclude(scripts/common.m4)
|
|
|
|
TORRENT_CHECK_CXXFLAGS()
|
|
TORRENT_ENABLE_DEBUG()
|
|
TORRENT_ENABLE_WERROR()
|
|
|
|
AC_PROG_CXX
|
|
AC_PROG_RANLIB
|
|
AC_SYS_LARGEFILE
|
|
|
|
AC_SEARCH_LIBS(wbkgdset, ncurses curses,,echo "*** The ncurses library is required!";exit 1)
|
|
|
|
TORRENT_CHECK_EXECINFO()
|
|
TORRENT_CHECK_CURL()
|
|
TORRENT_OTFD()
|
|
|
|
PKG_CHECK_MODULES(STUFF, sigc++-2.0 libtorrent >= 0.6.7,
|
|
CXXFLAGS="$CXXFLAGS $STUFF_CFLAGS $CURL_CFLAGS";
|
|
LIBS="$LIBS $STUFF_LIBS $CURL_LIBS")
|
|
|
|
AC_DEFINE(HAVE_CONFIG_H, 1, true if config.h was included)
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
doc/Makefile
|
|
src/Makefile
|
|
src/core/Makefile
|
|
src/display/Makefile
|
|
src/input/Makefile
|
|
src/ui/Makefile
|
|
src/utils/Makefile
|
|
])
|