Browse Source

opt: relicense to GPLv2+ (from GPLv3+)

Acked by contributors:
Luke-Jr <luke@dashjr.org>:
	 I don't have any objections
Douglas Bagnall <douglas@halo.gen.nz>:
	Fine by me.
Joel Stanley <joel@jms.id.au>:
	Fine with me.
Brad Hards <bradh@frogmouth.net>:
	Ack.

No response from Joey (trivial warning patch) or Andreas Schlick (one
trivial patch, but he also wrote opt_free() (which was a 2 line function).

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell 12 years ago
parent
commit
79715b8c08
8 changed files with 8 additions and 8 deletions
  1. 1 1
      ccan/opt/LICENSE
  2. 1 1
      ccan/opt/_info
  3. 1 1
      ccan/opt/helpers.c
  4. 1 1
      ccan/opt/opt.c
  5. 1 1
      ccan/opt/opt.h
  6. 1 1
      ccan/opt/parse.c
  7. 1 1
      ccan/opt/private.h
  8. 1 1
      ccan/opt/usage.c

+ 1 - 1
ccan/opt/LICENSE

@@ -1 +1 @@
-../../licenses/GPL-3
+../../licenses/GPL-2

+ 1 - 1
ccan/opt/_info

@@ -52,7 +52,7 @@
  * 	return 0;
  * 	return 0;
  * }
  * }
  *
  *
- * License: GPL (v3 or any later version)
+ * License: GPL (v2 or any later version)
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  */
  */
 int main(int argc, char *argv[])
 int main(int argc, char *argv[])

+ 1 - 1
ccan/opt/helpers.c

@@ -1,4 +1,4 @@
-/* Licensed under GPLv3+ - see LICENSE file for details */
+/* Licensed under GPLv2+ - see LICENSE file for details */
 #include <ccan/opt/opt.h>
 #include <ccan/opt/opt.h>
 #include <ccan/cast/cast.h>
 #include <ccan/cast/cast.h>
 #include <inttypes.h>
 #include <inttypes.h>

+ 1 - 1
ccan/opt/opt.c

@@ -1,4 +1,4 @@
-/* Licensed under GPLv3+ - see LICENSE file for details */
+/* Licensed under GPLv2+ - see LICENSE file for details */
 #include <ccan/opt/opt.h>
 #include <ccan/opt/opt.h>
 #include <string.h>
 #include <string.h>
 #include <errno.h>
 #include <errno.h>

+ 1 - 1
ccan/opt/opt.h

@@ -1,4 +1,4 @@
-/* Licensed under GPLv3+ - see LICENSE file for details */
+/* Licensed under GPLv2+ - see LICENSE file for details */
 #ifndef CCAN_OPT_H
 #ifndef CCAN_OPT_H
 #define CCAN_OPT_H
 #define CCAN_OPT_H
 #include <ccan/compiler/compiler.h>
 #include <ccan/compiler/compiler.h>

+ 1 - 1
ccan/opt/parse.c

@@ -1,4 +1,4 @@
-/* Licensed under GPLv3+ - see LICENSE file for details */
+/* Licensed under GPLv2+ - see LICENSE file for details */
 /* Actual code to parse commandline. */
 /* Actual code to parse commandline. */
 #include <ccan/opt/opt.h>
 #include <ccan/opt/opt.h>
 #include <string.h>
 #include <string.h>

+ 1 - 1
ccan/opt/private.h

@@ -1,4 +1,4 @@
-/* Licensed under GPLv3+ - see LICENSE file for details */
+/* Licensed under GPLv2+ - see LICENSE file for details */
 #ifndef CCAN_OPT_PRIVATE_H
 #ifndef CCAN_OPT_PRIVATE_H
 #define CCAN_OPT_PRIVATE_H
 #define CCAN_OPT_PRIVATE_H
 
 

+ 1 - 1
ccan/opt/usage.c

@@ -1,4 +1,4 @@
-/* Licensed under GPLv3+ - see LICENSE file for details */
+/* Licensed under GPLv2+ - see LICENSE file for details */
 #include <ccan/opt/opt.h>
 #include <ccan/opt/opt.h>
 #if HAVE_SYS_TERMIOS_H
 #if HAVE_SYS_TERMIOS_H
 #include <sys/ioctl.h>
 #include <sys/ioctl.h>