summaryrefslogtreecommitdiff
path: root/src/compression
diff options
context:
space:
mode:
authorMagnus Lundborg <lundborg.magnus@gmail.com>2013-11-04 13:41:42 (GMT)
committerMagnus Lundborg <lundborg.magnus@gmail.com>2013-11-04 13:41:42 (GMT)
commit65443992d81a8845ba3597620d84e8652e83a254 (patch)
treef1a1c084c156210925d8009138a070d1cfb75366 /src/compression
parent0f1d005a2a7123f4077dbe3ff446ced8f240f1f8 (diff)
Changed from LGPL 2.1 license to the Revised BSD license.
Diffstat (limited to 'src/compression')
-rw-r--r--src/compression/bwlzh.c4
-rw-r--r--src/compression/bwt.c4
-rw-r--r--src/compression/coder.c4
-rw-r--r--src/compression/dict.c4
-rw-r--r--src/compression/fixpoint.c4
-rw-r--r--src/compression/huffman.c4
-rw-r--r--src/compression/huffmem.c4
-rw-r--r--src/compression/lz77.c4
-rw-r--r--src/compression/merge_sort.c4
-rw-r--r--src/compression/mtf.c4
-rw-r--r--src/compression/rle.c4
-rw-r--r--src/compression/tng_compress.c4
-rw-r--r--src/compression/vals16.c4
-rw-r--r--src/compression/warnmalloc.c4
-rw-r--r--src/compression/widemuldiv.c4
-rw-r--r--src/compression/xtc2.c4
-rw-r--r--src/compression/xtc3.c4
17 files changed, 17 insertions, 51 deletions
diff --git a/src/compression/bwlzh.c b/src/compression/bwlzh.c
index c9ab553..517828c 100644
--- a/src/compression/bwlzh.c
+++ b/src/compression/bwlzh.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/bwt.c b/src/compression/bwt.c
index 182cd07..88eb444 100644
--- a/src/compression/bwt.c
+++ b/src/compression/bwt.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/coder.c b/src/compression/coder.c
index 9e3c880..905e45d 100644
--- a/src/compression/coder.c
+++ b/src/compression/coder.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/dict.c b/src/compression/dict.c
index 4744949..5fb3c01 100644
--- a/src/compression/dict.c
+++ b/src/compression/dict.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/fixpoint.c b/src/compression/fixpoint.c
index ec48204..696cf48 100644
--- a/src/compression/fixpoint.c
+++ b/src/compression/fixpoint.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
#include <stdio.h>
diff --git a/src/compression/huffman.c b/src/compression/huffman.c
index 26dc347..bda2126 100644
--- a/src/compression/huffman.c
+++ b/src/compression/huffman.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/huffmem.c b/src/compression/huffmem.c
index dec6837..249fa54 100644
--- a/src/compression/huffmem.c
+++ b/src/compression/huffmem.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/lz77.c b/src/compression/lz77.c
index dba6400..51dd301 100644
--- a/src/compression/lz77.c
+++ b/src/compression/lz77.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/merge_sort.c b/src/compression/merge_sort.c
index 1d49903..04c20ad 100644
--- a/src/compression/merge_sort.c
+++ b/src/compression/merge_sort.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/mtf.c b/src/compression/mtf.c
index 1d74af3..5f96d62 100644
--- a/src/compression/mtf.c
+++ b/src/compression/mtf.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/rle.c b/src/compression/rle.c
index ee708ed..9663534 100644
--- a/src/compression/rle.c
+++ b/src/compression/rle.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/tng_compress.c b/src/compression/tng_compress.c
index 62c6326..3a378d1 100644
--- a/src/compression/tng_compress.c
+++ b/src/compression/tng_compress.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
#include <stdlib.h>
diff --git a/src/compression/vals16.c b/src/compression/vals16.c
index 10a1cd8..ab65953 100644
--- a/src/compression/vals16.c
+++ b/src/compression/vals16.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/warnmalloc.c b/src/compression/warnmalloc.c
index 7eaad8f..c05be20 100644
--- a/src/compression/warnmalloc.c
+++ b/src/compression/warnmalloc.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/widemuldiv.c b/src/compression/widemuldiv.c
index 44d4adb..3c2ac79 100644
--- a/src/compression/widemuldiv.c
+++ b/src/compression/widemuldiv.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
diff --git a/src/compression/xtc2.c b/src/compression/xtc2.c
index d0e0c09..b39db79 100644
--- a/src/compression/xtc2.c
+++ b/src/compression/xtc2.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
/* This code is heavily influenced by
diff --git a/src/compression/xtc3.c b/src/compression/xtc3.c
index edeb93d..942839d 100644
--- a/src/compression/xtc3.c
+++ b/src/compression/xtc3.c
@@ -5,9 +5,7 @@
*
*
* This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 2.1
- * of the License, or (at your option) any later version.
+ * modify it under the terms of the Revised BSD License.
*/
/* This code is heavily influenced by
contact: Jan Huwald // Impressum