46 lines
2.1 KiB
Diff
46 lines
2.1 KiB
Diff
From 20cb5c9cc94c3ce534daad67817cbae9889d77e1 Mon Sep 17 00:00:00 2001
|
|
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
|
Date: Tue, 21 Jan 2025 09:35:10 -0500
|
|
Subject: [PATCH] Add MIT license text for src/common/utf8.c
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
The MIT license requires the copyright and permission notices to be
|
|
included in “all copies or substantial portions of the Software.”
|
|
---
|
|
LICENSE | 24 ++++++++++++++++++++++++
|
|
1 file changed, 24 insertions(+)
|
|
|
|
diff --git a/LICENSE b/LICENSE
|
|
index 9440e80..4a76824 100644
|
|
--- a/LICENSE
|
|
+++ b/LICENSE
|
|
@@ -26,3 +26,27 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
+----------------------------------------------------------------------
|
|
+
|
|
+The file src/common/utf8.c is:
|
|
+
|
|
+Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
|
|
+Copyright (c) 2014-2024 Rafael G. Martins <rafael@rafaelmartins.eng.br>
|
|
+
|
|
+Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
+this software and associated documentation files (the "Software"), to deal in
|
|
+the Software without restriction, including without limitation the rights to
|
|
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
+of the Software, and to permit persons to whom the Software is furnished to do
|
|
+so, subject to the following conditions:
|
|
+
|
|
+The above copyright notice and this permission notice shall be included in all
|
|
+copies or substantial portions of the Software.
|
|
+
|
|
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
+SOFTWARE.
|