mirror of
https://github.com/mfillpot/mathomatic.git
synced 2026-01-09 04:59:37 +00:00
51 lines
2.2 KiB
C
51 lines
2.2 KiB
C
/*
|
|
* This Mathomatic include file contains the current license notice.
|
|
*/
|
|
|
|
/* The following is the Mathomatic license notice, stored in a string. */
|
|
/* It is displayed by the "help copyright" command. */
|
|
char *license_string =
|
|
" Mathomatic computer algebra system\n"
|
|
" Copyright (C) 1987-2012 George Gesslein II\n\n"
|
|
|
|
"This library is free software; you can redistribute it and/or\n"
|
|
"modify it under the terms of the GNU Lesser General Public\n"
|
|
"License as published by the Free Software Foundation; either\n"
|
|
"version 2.1 of the License, or (at your option) any later version.\n\n"
|
|
|
|
"This library 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 GNU\n"
|
|
"Lesser General Public License for more details.\n\n"
|
|
|
|
"You should have received a copy of the GNU Lesser General Public\n"
|
|
"License along with this library; if not, write to the Free Software\n"
|
|
"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n"
|
|
|
|
"The full text of this license with details is contained in the file \"COPYING\"\n"
|
|
"in the Mathomatic source distribution, obtainable from \"www.mathomatic.org\";\n"
|
|
"All Mathomatic software and associated files (except for the documentation)\n"
|
|
"are published under this license. The Mathomatic documentation is licensed\n"
|
|
"under the GNU Free Documentation License (GFDL) version 1.3,\n"
|
|
"with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts,\n"
|
|
"so it can be easily published, corrected, and translated by anyone.\n\n"
|
|
|
|
"Chief author and copyright holder contact information:\n\n"
|
|
|
|
" email:\n"
|
|
" gesslein@mathomatic.org or\n"
|
|
" georgegesslein@gmail.com\n\n"
|
|
|
|
" postal address:\n"
|
|
" George Gesslein II\n"
|
|
" P.O. Box 224\n"
|
|
" Lansing, New York 14882-0224\n"
|
|
" USA\n\n"
|
|
|
|
"Most others who have kindly contributed working code or good ideas to\n"
|
|
"Mathomatic are listed in the files \"AUTHORS\" and \"changes.txt\".\n"
|
|
"Great merit is given to people that report bugs, in the file \"changes.txt\".\n"
|
|
"This means you will also show up in the file \"NEWS\".\n"
|
|
"To report a bug, simply email the author, or use the bug reporting facility\n"
|
|
"shown with \"help bugs\".\n";
|