Released v0.9.0.

This commit is contained in:
rakshasa
2024-09-29 11:06:14 +00:00
parent 9a93281ded
commit a88cab6d2e
4 changed files with 6 additions and 6 deletions
-1
View File
@@ -4,7 +4,6 @@ SUBDIRS = \
test
EXTRA_DIST= \
autogen.sh \
rak/address_info.h \
rak/algorithm.h \
rak/allocators.h \
+3 -3
View File
@@ -1,8 +1,8 @@
BUILDING
Run "./autogen.sh" to generate the configure scripts if
necessary. The man page "doc/rtorrent.1" must be generated with
"docbook2man rtorrent.1.xml" if it is missing.
Run "aclocal -I scripts && autoconf -i && autoheader && automake --add-missing"
to generate the configure scripts if necessary. The man page "doc/rtorrent.1"
must be generated with "docbook2man rtorrent.1.xml" if it is missing.
Note that rtorrent follows the development of libtorrent closely, and
thus the versions must be in sync. This should not be nessesary in the
+2 -2
View File
@@ -1,6 +1,6 @@
m4_pattern_allow([PKG_CHECK_EXISTS])
AC_INIT([rtorrent], [0.9.8], [sundell.software@gmail.com])
AC_INIT([rtorrent], [0.10.0], [sundell.software@gmail.com])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([scripts])
@@ -49,7 +49,7 @@ fi
PKG_CHECK_MODULES([LIBCURL], [libcurl],, [LIBCURL_CHECK_CONFIG])
PKG_CHECK_MODULES([CPPUNIT], [cppunit],, [no_cppunit="yes"])
PKG_CHECK_MODULES([DEPENDENCIES], [libtorrent >= 0.13.8])
PKG_CHECK_MODULES([DEPENDENCIES], [libtorrent >= 0.14.0])
AC_LANG_PUSH(C++)
TORRENT_WITH_XMLRPC_C
+1
View File
@@ -4,6 +4,7 @@ check_PROGRAMS = $(TESTS)
rtorrentTest_LDADD = ../src/libsub_root.a
rtorrentTest_SOURCES = \
helpers/assert.h \
rpc/command_test.cc \
rpc/command_test.h \
rpc/command_map_test.cc \