Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / print_copyright.c
1
2 #include "config.h"
3 #include "definitions.h"
4
5 void print_copyright(const char *s)
6 {
7   printf("Copyright (C) %s. Dr. David Kirkby, PhD (G8WRB).\n",s);
8   printf("Dr. David Kirkby, e-mail drkirkby at ntlworld.com \n");
9   printf("Stokes Hall Lodge, Burnham Road, Althorne, Essex, CM3 6DT, UK.\n\n");
10
11   printf("This program is free software; you can redistribute it and/or\n");
12   printf("modify it under the terms of the GNU General Public License\n");
13   printf("as published by the Free Software Foundation; either package_version 2\n");
14   printf("of the License, or (at your option) any later package_version.\n\n");
15
16   printf("This program is distributed in the hope that it will be useful,\n");
17   printf("but WITHOUT ANY WARRANTY; without even the implied warranty of\n");
18   printf("MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n");
19   printf("GNU General Public License, printed below, for more details.\n\n");
20   
21
22   printf("                 GNU GENERAL PUBLIC LICENSE\n");
23   printf("                    Package_version 2, June 1991\n\n");
24   printf(" Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n");
25   printf("                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\n");
26   printf(" Everyone is permitted to copy and distribute verbatim copies\n");
27   printf(" of this license document, but changing it is not allowed.\n\n");
28   printf("                         Preamble\n");
29   printf("   The licenses for most software are designed to take away your\n");
30   printf("freedom to share and change it.  By contrast, the GNU General Public\n");
31   printf("License is intended to guarantee your freedom to share and change free\n");
32   printf("software--to make sure the software is free for all its users.  This\n");
33   printf("General Public License applies to most of the Free Software\n");
34   printf("Foundation's software and to any other program whose authors commit to\n");
35   printf("using it.  (Some other Free Software Foundation software is covered by\n");
36   printf("the GNU Library General Public License instead.)  You can apply it to\n");
37   printf("your programs, too.\n\n");
38
39   printf("  When we speak of free software, we are referring to freedom, not\n");
40   printf("price.  Our General Public Licenses are designed to make sure that you\n");
41   printf("have the freedom to distribute copies of free software (and charge for\n");
42   printf("this service if you wish), that you receive source code or can get it\n");
43   printf("if you want it, that you can change the software or use pieces of it\n");
44   printf("in new free programs; and that you know you can do these things.\n\n");
45
46   printf("  To protect your rights, we need to make restrictions that forbid\n");
47   printf("anyone to deny you these rights or to ask you to surrender the rights.\n");
48   printf("These restrictions translate to certain responsibilities for you if you\n");
49   printf("distribute copies of the software, or if you modify it.\n\n");
50
51   printf("  For example, if you distribute copies of such a program, whether\n");
52   printf("gratis or for a fee, you must give the recipients all the rights that\n");
53   printf("you have.  You must make sure that they, too, receive or can get the\n");
54   printf("source code.  And you must show them these terms so they know their\n");
55   printf("rights.\n");
56   printf("\n");
57   printf("  We protect your rights with two steps: (1) copyright the software, and\n");
58   printf("(2) offer you this license which gives you legal permission to copy,\n");
59   printf("distribute and/or modify the software.\n");
60   printf("\n");
61   printf("  Also, for each author's protection and ours, we want to make certain\n");
62   printf("that everyone understands that there is no warranty for this free\n");
63   printf("software.  If the software is modified by someone else and passed on, we\n");
64   printf("want its recipients to know that what they have is not the original, so\n");
65   printf("that any problems introduced by others will not reflect on the original\n");
66   printf("authors' reputations.\n");
67   printf("\n");
68   printf("  Finally, any free program is threatened constantly by software\n");
69   printf("patents.  We wish to avoid the danger that redistributors of a free\n");
70   printf("program will individually obtain patent licenses, in effect making the\n");
71   printf("program proprietary.  To prevent this, we have made it clear that any\n");
72   printf("patent must be licensed for everyone's free use or not licensed at all.\n");
73   printf("\n");
74   printf("  The precise terms and conditions for copying, distribution and\n");
75   printf("modification follow.\n");
76   printf("\f\n");
77   printf("                  GNU GENERAL PUBLIC LICENSE\n");
78   printf("   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n");
79   printf("\n");
80   printf("  0. This License applies to any program or other work which contains\n");
81   printf("a notice placed by the copyright holder saying it may be distributed\n");
82   printf("under the terms of this General Public License.  The \"Program\", below,\n");
83   printf("refers to any such program or work, and a \"work based on the Program\"\n");
84   printf("means either the Program or any derivative work under copyright law:\n");
85   printf("that is to say, a work containing the Program or a portion of it,\n");
86   printf("either verbatim or with modifications and/or translated into another\n");
87   printf("language.  (Hereinafter, translation is included without limitation in\n");
88   printf("the term \"modification\".)  Each licensee is addressed as \"you\".\n");
89   printf("\n");
90   printf("Activities other than copying, distribution and modification are not\n");
91   printf("covered by this License; they are outside its scope.  The act of\n");
92   printf("running the Program is not restricted, and the output from the Program\n");
93   printf("is covered only if its contents constitute a work based on the\n");
94   printf("Program (independent of having been made by running the Program).\n");
95   printf("Whether that is true depends on what the Program does.\n");
96   printf("\n");
97   printf("  1. You may copy and distribute verbatim copies of the Program's\n");
98   printf("source code as you receive it, in any medium, provided that you\n");
99   printf("conspicuously and appropriately publish on each copy an appropriate\n");
100   printf("copyright notice and disclaimer of warranty; keep intact all the\n");
101   printf("notices that refer to this License and to the absence of any warranty;\n");
102   printf("and give any other recipients of the Program a copy of this License\n");
103   printf("along with the Program.\n");
104   printf("\n");
105   printf("You may charge a fee for the physical act of transferring a copy, and\n");
106   printf("you may at your option offer warranty protection in exchange for a fee.\n");
107   printf("\n");
108   printf("  2. You may modify your copy or copies of the Program or any portion\n");
109   printf("of it, thus forming a work based on the Program, and copy and\n");
110   printf("distribute such modifications or work under the terms of Section 1\n");
111   printf("above, provided that you also meet all of these conditions:\n");
112   printf("\n");
113   printf("    a) You must cause the modified files to carry prominent notices\n");
114   printf("    stating that you changed the files and the date of any change.\n");
115   printf("\n");
116   printf("    b) You must cause any work that you distribute or publish, that in\n");
117   printf("    whole or in part contains or is derived from the Program or any\n");
118   printf("    part thereof, to be licensed as a whole at no charge to all third\n");
119   printf("    parties under the terms of this License.\n");
120   printf("\n");
121   printf("    c) If the modified program normally reads commands interactively\n");
122   printf("    when run, you must cause it, when started running for such\n");
123   printf("    interactive use in the most ordinary way, to print or display an\n");
124   printf("    announcement including an appropriate copyright notice and a\n");
125   printf("    notice that there is no warranty (or else, saying that you provide\n");
126   printf("    a warranty) and that users may redistribute the program under\n");
127   printf("    these conditions, and telling the user how to view a copy of this\n");
128   printf("    License.  (Exception: if the Program itself is interactive but\n");
129   printf("    does not normally print such an announcement, your work based on\n");
130   printf("    the Program is not required to print an announcement.)\n");
131   printf("\f\n");
132   printf("These requirements apply to the modified work as a whole.  If\n");
133   printf("identifiable sections of that work are not derived from the Program,\n");
134   printf("and can be reasonably considered independent and separate works in\n");
135   printf("themselves, then this License, and its terms, do not apply to those\n");
136   printf("sections when you distribute them as separate works.  But when you\n");
137   printf("distribute the same sections as part of a whole which is a work based\n");
138   printf("on the Program, the distribution of the whole must be on the terms of\n");
139   printf("this License, whose permissions for other licensees extend to the\n");
140   printf("entire whole, and thus to each and every part regardless of who wrote it.\n");
141   printf("\n");
142   printf("Thus, it is not the intent of this section to claim rights or contest\n");
143   printf("your rights to work written entirely by you; rather, the intent is to\n");
144   printf("exercise the right to control the distribution of derivative or\n");
145   printf("collective works based on the Program.\n");
146   printf("\n");
147   printf("In addition, mere aggregation of another work not based on the Program\n");
148   printf("with the Program (or with a work based on the Program) on a volume of\n");
149   printf("a storage or distribution medium does not bring the other work under\n");
150   printf("the scope of this License.\n");
151   printf("\n");
152   printf("  3. You may copy and distribute the Program (or a work based on it,\n");
153   printf("under Section 2) in object code or executable form under the terms of\n");
154   printf("Sections 1 and 2 above provided that you also do one of the following:\n");
155   printf("\n");
156   printf("    a) Accompany it with the complete corresponding machine-readable\n");
157   printf("    source code, which must be distributed under the terms of Sections\n");
158   printf("    1 and 2 above on a medium customarily used for software interchange; or,\n");
159   printf("\n");
160   printf("    b) Accompany it with a written offer, valid for at least three\n");
161   printf("    years, to give any third party, for a charge no more than your\n");
162   printf("    cost of physically performing source distribution, a complete\n");
163   printf("    machine-readable copy of the corresponding source code, to be\n");
164   printf("    distributed under the terms of Sections 1 and 2 above on a medium\n");
165   printf("    customarily used for software interchange; or,\n");
166   printf("\n");
167   printf("    c) Accompany it with the information you received as to the offer\n");
168   printf("    to distribute corresponding source code.  (This alternative is\n");
169   printf("    allowed only for noncommercial distribution and only if you\n");
170   printf("    received the program in object code or executable form with such\n");
171   printf("    an offer, in accord with Subsection b above.)\n");
172   printf("\n");
173   printf("The source code for a work means the preferred form of the work for\n");
174   printf("making modifications to it.  For an executable work, complete source\n");
175   printf("code means all the source code for all modules it contains, plus any\n");
176   printf("associated interface definition files, plus the scripts used to\n");
177   printf("control compilation and installation of the executable.  However, as a\n");
178   printf("special exception, the source code distributed need not include\n");
179   printf("anything that is normally distributed (in either source or binary\n");
180   printf("form) with the major components (compiler, kernel, and so on) of the\n");
181   printf("operating system on which the executable runs, unless that component\n");
182   printf("itself accompanies the executable.\n");
183   printf("\n");
184   printf("If distribution of executable or object code is made by offering\n");
185   printf("access to copy from a designated place, then offering equivalent\n");
186   printf("access to copy the source code from the same place counts as\n");
187   printf("distribution of the source code, even though third parties are not\n");
188   printf("compelled to copy the source along with the object code.\n");
189   printf("\f\n");
190   printf("  4. You may not copy, modify, sublicense, or distribute the Program\n");
191   printf("except as expressly provided under this License.  Any attempt\n");
192   printf("otherwise to copy, modify, sublicense or distribute the Program is\n");
193   printf("void, and will automatically terminate your rights under this License.\n");
194   printf("However, parties who have received copies, or rights, from you under\n");
195   printf("this License will not have their licenses terminated so long as such\n");
196   printf("parties remain in full compliance.\n");
197   printf("\n");
198   printf("  5. You are not required to accept this License, since you have not\n");
199   printf("signed it.  However, nothing else grants you permission to modify or\n");
200   printf("distribute the Program or its derivative works.  These actions are\n");
201   printf("prohibited by law if you do not accept this License.  Therefore, by\n");
202   printf("modifying or distributing the Program (or any work based on the\n");
203   printf("Program), you indicate your acceptance of this License to do so, and\n");
204   printf("all its terms and conditions for copying, distributing or modifying\n");
205   printf("the Program or works based on it.\n");
206   printf("\n");
207   printf("  6. Each time you redistribute the Program (or any work based on the\n");
208   printf("Program), the recipient automatically receives a license from the\n");
209   printf("original licensor to copy, distribute or modify the Program subject to\n");
210   printf("these terms and conditions.  You may not impose any further\n");
211   printf("restrictions on the recipients' exercise of the rights granted herein.\n");
212   printf("You are not responsible for enforcing compliance by third parties to\n");
213   printf("this License.\n");
214   printf("\n");
215   printf("  7. If, as a consequence of a court judgment or allegation of patent\n");
216   printf("infringement or for any other reason (not limited to patent issues),\n");
217   printf("conditions are imposed on you (whether by court order, agreement or\n");
218   printf("otherwise) that contradict the conditions of this License, they do not\n");
219   printf("excuse you from the conditions of this License.  If you cannot\n");
220   printf("distribute so as to satisfy simultaneously your obligations under this\n");
221   printf("License and any other pertinent obligations, then as a consequence you\n");
222   printf("may not distribute the Program at all.  For example, if a patent\n");
223   printf("license would not permit royalty-free redistribution of the Program by\n");
224   printf("all those who receive copies directly or indirectly through you, then\n");
225   printf("the only way you could satisfy both it and this License would be to\n");
226   printf("refrain entirely from distribution of the Program.\n");
227   printf("\n");
228   printf("If any portion of this section is held invalid or unenforceable under\n");
229   printf("any particular circumstance, the balance of the section is intended to\n");
230   printf("apply and the section as a whole is intended to apply in other\n");
231   printf("circumstances.\n");
232   printf("\n");
233   printf("It is not the purpose of this section to induce you to infringe any\n");
234   printf("patents or other property right claims or to contest validity of any\n");
235   printf("such claims; this section has the sole purpose of protecting the\n");
236   printf("integrity of the free software distribution system, which is\n");
237   printf("implemented by public license practices.  Many people have made\n");
238   printf("generous contributions to the wide range of software distributed\n");
239   printf("through that system in reliance on consistent application of that\n");
240   printf("system; it is up to the author/donor to decide if he or she is willing\n");
241   printf("to distribute software through any other system and a licensee cannot\n");
242   printf("impose that choice.\n");
243   printf("\n");
244   printf("This section is intended to make thoroughly clear what is believed to\n");
245   printf("be a consequence of the rest of this License.\n");
246   printf("\f\n");
247   printf("  8. If the distribution and/or use of the Program is restricted in\n");
248   printf("certain countries either by patents or by copyrighted interfaces, the\n");
249   printf("original copyright holder who places the Program under this License\n");
250   printf("may add an explicit geographical distribution limitation excluding\n");
251   printf("those countries, so that distribution is permitted only in or among\n");
252   printf("countries not thus excluded.  In such case, this License incorporates\n");
253   printf("the limitation as if written in the body of this License.\n");
254   printf("\n");
255   printf("  9. The Free Software Foundation may publish revised and/or new versions\n");
256   printf("of the General Public License from time to time.  Such new versions will\n");
257   printf("be similar in spirit to the present package_version, but may differ in detail to\n");
258   printf("address new problems or concerns.\n");
259   printf("\n");
260   printf("Each package_version is given a distinguishing package_version number.  If the Program\n");
261   printf("specifies a package_version number of this License which applies to it and \"any\n");
262   printf("later package_version\", you have the option of following the terms and conditions\n");
263   printf("either of that package_version or of any later package_version published by the Free\n");
264   printf("Software Foundation.  If the Program does not specify a package_version number of\n");
265   printf("this License, you may choose any package_version ever published by the Free Software\n");
266   printf("Foundation.\n");
267   printf("\n");
268   printf("  10. If you wish to incorporate parts of the Program into other free\n");
269   printf("programs whose distribution conditions are different, write to the author\n");
270   printf("to ask for permission.  For software which is copyrighted by the Free\n");
271   printf("Software Foundation, write to the Free Software Foundation; we sometimes\n");
272   printf("make exceptions for this.  Our decision will be guided by the two goals\n");
273   printf("of preserving the free status of all derivatives of our free software and\n");
274   printf("of promoting the sharing and reuse of software generally.\n");
275   printf("\n");
276   printf("                          NO WARRANTY\n");
277   printf("\n");
278   printf("  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\n");
279   printf("FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\n");
280   printf("OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n");
281   printf("PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\n");
282   printf("OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n");
283   printf("MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\n");
284   printf("TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\n");
285   printf("PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\n");
286   printf("REPAIR OR CORRECTION.\n");
287   printf("\n");
288   printf("  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n");
289   printf("WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\n");
290   printf("REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\n");
291   printf("INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\n");
292   printf("OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\n");
293   printf("TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\n");
294   printf("YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n");
295   printf("PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n");
296   printf("POSSIBILITY OF SUCH DAMAGES.\n");
297   printf("\n");
298   printf("                   END OF TERMS AND CONDITIONS\n");
299 }