commit d5957578743efcc9fbdab936c60ada43f9a29098
parent 1e746f46ce9d4c1c757df8e034ee50c108c2db81
Author: fundamental <[email protected]>
Date: Wed, 23 Sep 2015 14:02:53 -0400
Resolve Licensing Ambiguity
GPL v2 -> GPL v2+ based upon rereading commit logs and the mailing
lists
Diffstat:
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/README.adoc b/README.adoc
@@ -8,7 +8,7 @@ Originally written by Nasca Octavian Paul <zynaddsubfx AT yahoo D0T com>
Maintained by Mark McCurry 2009+.
ZynAddSubFX is free program and is distributed WITH NO WARRANTY.
-It is licensed under GNU General Public License version 2 (and only version 2).
+It is licensed under GNU General Public License version 2+.
The project page is
http://sourceforge.net/projects/zynaddsubfx
diff --git a/src/Misc/WavFile.cpp b/src/Misc/WavFile.cpp
@@ -10,7 +10,7 @@
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License (version 2) for more details.
+ GNU General Public License (version 2 or later) for more details.
You should have received a copy of the GNU General Public License (version 2)
along with this program; if not, write to the Free Software Foundation,
diff --git a/src/Misc/WavFile.h b/src/Misc/WavFile.h
@@ -13,7 +13,7 @@
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License (version 2) for more details.
+ GNU General Public License (version 2 or later) for more details.
You should have received a copy of the GNU General Public License (version 2)
along with this program; if not, write to the Free Software Foundation,
diff --git a/src/Nio/WavEngine.cpp b/src/Nio/WavEngine.cpp
@@ -9,7 +9,7 @@
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License (version 2) for more details.
+ GNU General Public License (version 2 or later) for more details.
You should have received a copy of the GNU General Public License (version 2)
along with this program; if not, write to the Free Software Foundation,
diff --git a/src/Nio/WavEngine.h b/src/Nio/WavEngine.h
@@ -13,7 +13,7 @@
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License (version 2) for more details.
+ GNU General Public License (version 2 or later) for more details.
You should have received a copy of the GNU General Public License (version 2)
along with this program; if not, write to the Free Software Foundation,
diff --git a/src/Output/DSSIaudiooutput.cpp b/src/Output/DSSIaudiooutput.cpp
@@ -534,7 +534,7 @@ DSSI_Descriptor *DSSIaudiooutput::initDssiDescriptor()
newLadspaDescriptor->Name = "ZynAddSubFX";
newLadspaDescriptor->Maker =
"Nasca Octavian Paul <[email protected]>";
- newLadspaDescriptor->Copyright = "GNU General Public License v2";
+ newLadspaDescriptor->Copyright = "GNU General Public License v2 or later";
newLadspaDescriptor->PortCount = 2;
newPortNames = new const char *[newLadspaDescriptor->PortCount];
diff --git a/src/main.cpp b/src/main.cpp
@@ -138,7 +138,7 @@ int main(int argc, char *argv[])
<< " Copyright (c) 2009-2014 Mark McCurry [active maintainer]"
<< endl;
cerr << "Compiled: " << __DATE__ << " " << __TIME__ << endl;
- cerr << "This program is free software (GNU GPL v.2 or later) and \n";
+ cerr << "This program is free software (GNU GPL v2 or later) and \n";
cerr << "it comes with ABSOLUTELY NO WARRANTY.\n" << endl;
if(argc == 1)
cerr << "Try 'zynaddsubfx --help' for command-line options." << endl;