diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-03-19 10:05:31 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-03-19 12:11:23 -0700 |
commit | 60625de67efa1d35b415c2409a5279b4d02c51ef (patch) | |
tree | f21d24f2f8fb3e1ecad67f2912da350a220d78a6 /src/modules/swab/swab.c | |
parent | 1f3640f85c4fb811aaad9b500298c8a585a10ad8 (diff) |
*: drop til_module_t.license
Originally the thinking was that rototiller modules would become
dlopen()ed shared objects, and that it would make sense to let
them be licensed differently.
At this time only some modules I have written were gplv3, Phil's
modules are all gplv2, and I'm not inclined to pivot towards a
dlopen model.
So this commit drops the license field from til_module_t,
relicenses my v3 code to v2, and adds a gplv2 LICENSE file to the
source root dir. As of now rototiller+libtil and all its modules
are simply gplv2, and anything linking in libtil must use a gplv2
compatible license - the expectation is that you just use gplv2.
Diffstat (limited to 'src/modules/swab/swab.c')
-rw-r--r-- | src/modules/swab/swab.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/swab/swab.c b/src/modules/swab/swab.c index 44b9f21..fee20cf 100644 --- a/src/modules/swab/swab.c +++ b/src/modules/swab/swab.c @@ -2,7 +2,7 @@ * Copyright (C) 2019 - Vito Caputo - <vcaputo@pengaru.com> * * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 3 as published + * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, @@ -148,5 +148,4 @@ til_module_t swab_module = { .name = "swab", .description = "Colorful perlin-noise visualization (threaded)", .author = "Vito Caputo <vcaputo@pengaru.com>", - .license = "GPLv3", }; |