Skip to content

Commit

Permalink
Released v0.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
rakshasa committed Sep 29, 2024
1 parent 9a93281 commit a88cab6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ SUBDIRS = \
test

EXTRA_DIST= \
autogen.sh \
rak/address_info.h \
rak/algorithm.h \
rak/allocators.h \
Expand Down
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
m4_pattern_allow([PKG_CHECK_EXISTS])

AC_INIT([rtorrent], [0.9.8], [[email protected]])
AC_INIT([rtorrent], [0.10.0], [[email protected]])

AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([scripts])
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

2 comments on commit a88cab6

@Pentaphon
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome! But you may want to update the readme.

@rakshasa
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed readme.

Please sign in to comment.