-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathlicense.h
50 lines (41 loc) · 2.24 KB
/
license.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* 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"
" [email protected] or\n"
" [email protected]\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";