summaryrefslogtreecommitdiff
path: root/src
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
parent0f1d005a2a7123f4077dbe3ff446ced8f240f1f8 (diff)
Changed from LGPL 2.1 license to the Revised BSD license.
Diffstat (limited to 'src')
-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
-rw-r--r--src/lib/tng_io.c6
-rw-r--r--src/lib/tng_io_fortran.c6
-rw-r--r--src/tests/tng_io_read_pos.c6
-rw-r--r--src/tests/tng_io_read_pos_util.c8
-rw-r--r--src/tests/tng_io_testing.c6
-rw-r--r--src/tests/tng_parallel_read.c6
23 files changed, 30 insertions, 76 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
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c
index 720110a..383b414 100644
--- a/src/lib/tng_io.c
+++ b/src/lib/tng_io.c
@@ -3,14 +3,12 @@
* VERSION 1.4
*
* Written by Magnus Lundborg
- * Copyright (c) 2012, The GROMACS development team.
+ * Copyright (c) 2012-2013, The GROMACS development team.
* Check out http://www.gromacs.org for more information.
*
*
* 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.
*/
#ifdef USE_STD_INTTYPES_H
diff --git a/src/lib/tng_io_fortran.c b/src/lib/tng_io_fortran.c
index 5c7bbb7..9c3e551 100644
--- a/src/lib/tng_io_fortran.c
+++ b/src/lib/tng_io_fortran.c
@@ -3,14 +3,12 @@
* VERSION 1.4
*
* Written by Magnus Lundborg
- * Copyright (c) 2012, The GROMACS development team.
+ * Copyright (c) 2012-2013, The GROMACS development team.
* Check out http://www.gromacs.org for more information.
*
*
* 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 "tng_io.h"
diff --git a/src/tests/tng_io_read_pos.c b/src/tests/tng_io_read_pos.c
index 118ccef..3ff7660 100644
--- a/src/tests/tng_io_read_pos.c
+++ b/src/tests/tng_io_read_pos.c
@@ -3,14 +3,12 @@
* VERSION 1.0
*
* Written by Magnus Lundborg
- * Copyright (c) 2012, The GROMACS development team.
+ * Copyright (c) 2012-2013, The GROMACS development team.
* check out http://www.gromacs.org for more information.
*
*
* 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.
*/
#ifdef USE_STD_INTTYPES_H
diff --git a/src/tests/tng_io_read_pos_util.c b/src/tests/tng_io_read_pos_util.c
index 8d240e3..6dd6524 100644
--- a/src/tests/tng_io_read_pos_util.c
+++ b/src/tests/tng_io_read_pos_util.c
@@ -5,14 +5,12 @@
* VERSION 1.0
*
* Written by Magnus Lundborg
- * Copyright (c) 2012, The GROMACS development team.
- * check out http://www.gromacs.org for more information.
+ * Copyright (c) 2012-2013, The GROMACS development team.
+ * Check out http://www.gromacs.org for more information.
*
*
* 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.
*/
#ifdef USE_STD_INTTYPES_H
diff --git a/src/tests/tng_io_testing.c b/src/tests/tng_io_testing.c
index 158bcfa..a37710f 100644
--- a/src/tests/tng_io_testing.c
+++ b/src/tests/tng_io_testing.c
@@ -3,14 +3,12 @@
* VERSION 1.0
*
* Written by Magnus Lundborg
- * Copyright (c) 2012, The GROMACS development team.
+ * Copyright (c) 2012-2013, The GROMACS development team.
* Check out http://www.gromacs.org for more information.
*
*
* 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.
*/
#ifdef USE_STD_INTTYPES_H
diff --git a/src/tests/tng_parallel_read.c b/src/tests/tng_parallel_read.c
index a55a006..598d42a 100644
--- a/src/tests/tng_parallel_read.c
+++ b/src/tests/tng_parallel_read.c
@@ -5,14 +5,12 @@
* VERSION 1.0
*
* Written by Magnus Lundborg
- * Copyright (c) 2012, The GROMACS development team.
+ * Copyright (c) 2012-2013, The GROMACS development team.
* Check out http://www.gromacs.org for more information.
*
*
* 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>
contact: Jan Huwald // Impressum