summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2013-09-09 16:51:14 +0930
committerRusty Russell <rusty@rustcorp.com.au>2013-09-09 16:59:59 +0930
commitfa1277d4cf5b9946ebc9f9804958ec7c96a990cd (patch)
tree8b09eccab9b10a4eb09c06fac3bb6afd8936ba1f
parent8d14165ac039a97617f2b63ee70754b855776013 (diff)
ilog: relicense to Public Domain.
I noted to Timothy in 2011: I finally got around to implementing license checking in ccanlint, and it shows that your public domain ccan/isaac module uses your LGPL ccan/ilog module, which partially defeats the point. You and I are the only ones who did anything significant to ilog; I'm happy to relicense to PD or whatever else you want. Or leave it, in which case I'll need to document it clearly. He finally got back to me, and I sent him this patch, to which he replied: Ack. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
l---------ccan/ilog/LICENSE2
-rw-r--r--ccan/ilog/_info2
-rw-r--r--ccan/ilog/ilog.c2
-rw-r--r--ccan/ilog/ilog.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/ccan/ilog/LICENSE b/ccan/ilog/LICENSE
index dc314eca..b7951dab 120000
--- a/ccan/ilog/LICENSE
+++ b/ccan/ilog/LICENSE
@@ -1 +1 @@
-../../licenses/LGPL-2.1 \ No newline at end of file
+../../licenses/CC0 \ No newline at end of file
diff --git a/ccan/ilog/_info b/ccan/ilog/_info
index 9a92f4e7..9038b59d 100644
--- a/ccan/ilog/_info
+++ b/ccan/ilog/_info
@@ -29,7 +29,7 @@
* return 0;
* }
*
- * License: LGPL (v2.1 or any later version)
+ * License: CC0 (Public domain)
* Author: Timothy B. Terriberry <tterribe@xiph.org>
*/
#include <string.h>
diff --git a/ccan/ilog/ilog.c b/ccan/ilog/ilog.c
index 22275d2a..5f5122d5 100644
--- a/ccan/ilog/ilog.c
+++ b/ccan/ilog/ilog.c
@@ -1,4 +1,4 @@
-/*(C) Timothy B. Terriberry (tterribe@xiph.org) 2001-2009 LGPL (v2 or later).
+/*(C) Timothy B. Terriberry (tterribe@xiph.org) 2001-2009 CC0 (Public domain).
* See LICENSE file for details. */
#include "ilog.h"
#include <limits.h>
diff --git a/ccan/ilog/ilog.h b/ccan/ilog/ilog.h
index e52f0423..9adbb824 100644
--- a/ccan/ilog/ilog.h
+++ b/ccan/ilog/ilog.h
@@ -1,4 +1,4 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
+/* CC0 (Public domain) - see LICENSE file for details */
#if !defined(_ilog_H)
# define _ilog_H (1)
# include "config.h"