Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the file README #241

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 22 additions & 27 deletions README
Original file line number Diff line number Diff line change
@@ -1,27 +1,22 @@
LibTorrent

Copyright (C) 2005-2014, Jari Sundell

LICENSE

GNU GPL, see COPYING. "libtorrent/src/utils/sha_fast.{cc,h}" is
originally from the Mozilla NSS and is under a triple license; MPL,
LGPL and GPL. An exception to non-NSS code has been added for linking
to OpenSSL as requested by Debian, though the author considers that
library to be part of the Operative System and thus linking is allowed
according to the GPL.

Use whatever fits your purpose, the code required to compile with
Mozilla's NSS implementation of SHA1 has been retained and can be
compiled if the user wishes to avoid using OpenSSL.

CONTACT

Jari Sundell

Skomakerveien 33
3185 Skoppum, NORWAY

Send bug reports, suggestions and patches to
<[email protected]> or to the mailinglist.

#### When the people want to buil LibTorrent from the branch master :
```
git clone https://github.com/rakshasa/libtorrent.git RakShasa-LibTorrent;\
cd RakShasa-LibTorrent;\
git checkout master;\
autoreconf -fi;\
./configure;\
make;\
make install;\
cd ../;
```
#### When the people want to buil LibTorrent from the latest release (2023/03/27 currently = v0.13.8) :
```
git clone https://github.com/rakshasa/libtorrent.git RakShasa-LibTorrent;\
cd RakShasa-LibTorrent;\
git checkout v0.13.8;\
./autogen.sh;\
./configure;\
make;\
make install;\
cd ../;
```