diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-06-05 11:04:03 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-06-05 11:04:03 +0000 |
commit | 9cad0e4ed827953634dfb895a4876fefa512a277 (patch) | |
tree | 2b51f4c7a6598a01fb50ec0ec64ad85bdc988b7e /cmdutils.c | |
parent | 4656c375bc21368b2801977595c6b13e4302b4b8 (diff) | |
download | ffmpeg-9cad0e4ed827953634dfb895a4876fefa512a277.tar.gz |
Add configure option to upgrade (L)GPL to version 3.
Originally committed as revision 19116 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index e7070b77ce..bca7034fa7 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -312,6 +312,20 @@ void show_license(void) "This version of %s has nonfree parts compiled in.\n" "Therefore it is not legally redistributable.\n", program_name +#elif CONFIG_GPLV3 + "%s is free software; you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation; either version 3 of the License, or\n" + "(at your option) any later version.\n" + "\n" + "%s is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + "GNU General Public License for more details.\n" + "\n" + "You should have received a copy of the GNU General Public License\n" + "along with %s. If not, see <http://www.gnu.org/licenses/>.\n", + program_name, program_name, program_name #elif CONFIG_GPL "%s is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" @@ -327,6 +341,20 @@ void show_license(void) "along with %s; if not, write to the Free Software\n" "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n", program_name, program_name, program_name +#elif CONFIG_LGPLV3 + "%s is free software; you can redistribute it and/or modify\n" + "it under the terms of the GNU Lesser General Public License as published by\n" + "the Free Software Foundation; either version 3 of the License, or\n" + "(at your option) any later version.\n" + "\n" + "%s is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + "GNU Lesser General Public License for more details.\n" + "\n" + "You should have received a copy of the GNU Lesser General Public License\n" + "along with %s. If not, see <http://www.gnu.org/licenses/>.\n", + program_name, program_name, program_name #else "%s is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU Lesser General Public\n" |