-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed the thirdparty 'unrar' library because it is incompatible wit…
…h the base license of that library, GPLv2. Support for rar archives was not implemented, so no functionality was affected. For future implementation of support for rar archives, need to use an external program `unrar` or `rar`. See https://www.gnu.org/licenses/gpl-faq.html#GPLPlugins
- Loading branch information
Showing
129 changed files
with
15 additions
and
26,931 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/*************************************************************************** | ||
* CoolReader engine * | ||
* Copyright (C) 2008,2011 Vadim Lopatin <[email protected]> * | ||
* Copyright (C) 2020 Aleksey Chernov <[email protected]> * | ||
* Copyright (C) 2020,2022 Aleksey Chernov <[email protected]> * | ||
* * | ||
* This program is free software; you can redistribute it and/or * | ||
* modify it under the terms of the GNU General Public License * | ||
|
@@ -19,6 +19,18 @@ | |
* MA 02110-1301, USA. * | ||
***************************************************************************/ | ||
|
||
/** | ||
* Support for rar archives is not implemented yet. | ||
* When implementing support for rar archives, we cannot use 'unrar' | ||
* library, we cannot link the program with it, since it has a license | ||
* that is not compatible with the GPL. | ||
* Instead, we can call the 'unrar' or 'rar' program installed on the | ||
* system and process the data it returns. | ||
* After support for rar archives is implemented, this comment should be removed. | ||
* | ||
* See https://www.gnu.org/licenses/gpl-faq.html#GPLPlugins | ||
*/ | ||
|
||
#include "lvrararc.h" | ||
|
||
#if (USE_UNRAR==1) | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.