home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume29 / libdes / part04 < prev    next >
Encoding:
Internet Message Format  |  1992-04-03  |  27.0 KB

  1. From: eay@psych.psy.uq.oz.au (Eric Young)
  2. Newsgroups: comp.sources.misc
  3. Subject: v29i046: libdes - DES encryption library, Part04/04
  4. Message-ID: <1992Apr3.224152.29756@aber.ac.uk>
  5. Date: 3 Apr 92 22:41:52 GMT
  6. Approved: aem@aber.ac.uk
  7. X-Md4-Signature: ca142e0b980f107e6fced37d457b6ab2
  8.  
  9. Submitted-by: eay@psych.psy.uq.oz.au (Eric Young)
  10. Posting-number: Volume 29, Issue 46
  11. Archive-name: libdes/part04
  12. Environment: UNIX
  13.  
  14. #! /bin/sh
  15. # it by saving it into a file and typing "sh file".  To overwrite existing
  16. # files, type "sh file -c".  You can also feed this as standard input via
  17. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  18. # will see the following message at the end:
  19. #        "End of archive 4 (of 4)."
  20. # Contents:  COPYING
  21. # Wrapped by aem@aberfa on Wed Apr  1 15:53:26 1992
  22. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  23. if test -f 'COPYING' -a "${1}" != "-c" ; then 
  24.   echo shar: Will not clobber existing file \"'COPYING'\"
  25. else
  26. echo shar: Extracting \"'COPYING'\" \(25509 characters\)
  27. sed "s/^X//" >'COPYING' <<'END_OF_FILE'
  28. XCopyright (C) 1992 Eric Young
  29. X
  30. XThis is a DES implementation written by Eric Young (eay@psych.psy.uq.oz.au)
  31. XThe implementation was written so as to conform with the manual entry
  32. Xfor the des_crypt(3) library routines from MIT's project Athena.
  33. X
  34. X
  35. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  36. X               Version 2, June 1991
  37. X
  38. X Copyright (C) 1991 Free Software Foundation, Inc.
  39. X                    675 Mass Ave, Cambridge, MA 02139, USA
  40. X Everyone is permitted to copy and distribute verbatim copies
  41. X of this license document, but changing it is not allowed.
  42. X
  43. X[This is the first released version of the library GPL.  It is
  44. X numbered 2 because it goes with version 2 of the ordinary GPL.]
  45. X
  46. X                Preamble
  47. X
  48. X  The licenses for most software are designed to take away your
  49. Xfreedom to share and change it.  By contrast, the GNU General Public
  50. XLicenses are intended to guarantee your freedom to share and change
  51. Xfree software--to make sure the software is free for all its users.
  52. X
  53. X  This license, the Library General Public License, applies to some
  54. Xspecially designated Free Software Foundation software, and to any
  55. Xother libraries whose authors decide to use it.  You can use it for
  56. Xyour libraries, too.
  57. X
  58. X  When we speak of free software, we are referring to freedom, not
  59. Xprice.  Our General Public Licenses are designed to make sure that you
  60. Xhave the freedom to distribute copies of free software (and charge for
  61. Xthis service if you wish), that you receive source code or can get it
  62. Xif you want it, that you can change the software or use pieces of it
  63. Xin new free programs; and that you know you can do these things.
  64. X
  65. X  To protect your rights, we need to make restrictions that forbid
  66. Xanyone to deny you these rights or to ask you to surrender the rights.
  67. XThese restrictions translate to certain responsibilities for you if
  68. Xyou distribute copies of the library, or if you modify it.
  69. X
  70. X  For example, if you distribute copies of the library, whether gratis
  71. Xor for a fee, you must give the recipients all the rights that we gave
  72. Xyou.  You must make sure that they, too, receive or can get the source
  73. Xcode.  If you link a program with the library, you must provide
  74. Xcomplete object files to the recipients so that they can relink them
  75. Xwith the library, after making changes to the library and recompiling
  76. Xit.  And you must show them these terms so they know their rights.
  77. X
  78. X  Our method of protecting your rights has two steps: (1) copyright
  79. Xthe library, and (2) offer you this license which gives you legal
  80. Xpermission to copy, distribute and/or modify the library.
  81. X
  82. X  Also, for each distributor's protection, we want to make certain
  83. Xthat everyone understands that there is no warranty for this free
  84. Xlibrary.  If the library is modified by someone else and passed on, we
  85. Xwant its recipients to know that what they have is not the original
  86. Xversion, so that any problems introduced by others will not reflect on
  87. Xthe original authors' reputations.
  88. X
  89. X  Finally, any free program is threatened constantly by software
  90. Xpatents.  We wish to avoid the danger that companies distributing free
  91. Xsoftware will individually obtain patent licenses, thus in effect
  92. Xtransforming the program into proprietary software.  To prevent this,
  93. Xwe have made it clear that any patent must be licensed for everyone's
  94. Xfree use or not licensed at all.
  95. X
  96. X  Most GNU software, including some libraries, is covered by the ordinary
  97. XGNU General Public License, which was designed for utility programs.  This
  98. Xlicense, the GNU Library General Public License, applies to certain
  99. Xdesignated libraries.  This license is quite different from the ordinary
  100. Xone; be sure to read it in full, and don't assume that anything in it is
  101. Xthe same as in the ordinary license.
  102. X
  103. X  The reason we have a separate public license for some libraries is that
  104. Xthey blur the distinction we usually make between modifying or adding to a
  105. Xprogram and simply using it.  Linking a program with a library, without
  106. Xchanging the library, is in some sense simply using the library, and is
  107. Xanalogous to running a utility program or application program.  However, in
  108. Xa textual and legal sense, the linked executable is a combined work, a
  109. Xderivative of the original library, and the ordinary General Public License
  110. Xtreats it as such.
  111. X
  112. X  Because of this blurred distinction, using the ordinary General
  113. XPublic License for libraries did not effectively promote software
  114. Xsharing, because most developers did not use the libraries.  We
  115. Xconcluded that weaker conditions might promote sharing better.
  116. X
  117. X  However, unrestricted linking of non-free programs would deprive the
  118. Xusers of those programs of all benefit from the free status of the
  119. Xlibraries themselves.  This Library General Public License is intended to
  120. Xpermit developers of non-free programs to use free libraries, while
  121. Xpreserving your freedom as a user of such programs to change the free
  122. Xlibraries that are incorporated in them.  (We have not seen how to achieve
  123. Xthis as regards changes in header files, but we have achieved it as regards
  124. Xchanges in the actual functions of the Library.)  The hope is that this
  125. Xwill lead to faster development of free libraries.
  126. X
  127. X  The precise terms and conditions for copying, distribution and
  128. Xmodification follow.  Pay close attention to the difference between a
  129. X"work based on the library" and a "work that uses the library".  The
  130. Xformer contains code derived from the library, while the latter only
  131. Xworks together with the library.
  132. X
  133. X  Note that it is possible for a library to be covered by the ordinary
  134. XGeneral Public License rather than by this special one.
  135. X
  136. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  137. X   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  138. X
  139. X  0. This License Agreement applies to any software library which
  140. Xcontains a notice placed by the copyright holder or other authorized
  141. Xparty saying it may be distributed under the terms of this Library
  142. XGeneral Public License (also called "this License").  Each licensee is
  143. Xaddressed as "you".
  144. X
  145. X  A "library" means a collection of software functions and/or data
  146. Xprepared so as to be conveniently linked with application programs
  147. X(which use some of those functions and data) to form executables.
  148. X
  149. X  The "Library", below, refers to any such software library or work
  150. Xwhich has been distributed under these terms.  A "work based on the
  151. XLibrary" means either the Library or any derivative work under
  152. Xcopyright law: that is to say, a work containing the Library or a
  153. Xportion of it, either verbatim or with modifications and/or translated
  154. Xstraightforwardly into another language.  (Hereinafter, translation is
  155. Xincluded without limitation in the term "modification".)
  156. X
  157. X  "Source code" for a work means the preferred form of the work for
  158. Xmaking modifications to it.  For a library, complete source code means
  159. Xall the source code for all modules it contains, plus any associated
  160. Xinterface definition files, plus the scripts used to control compilation
  161. Xand installation of the library.
  162. X
  163. X  Activities other than copying, distribution and modification are not
  164. Xcovered by this License; they are outside its scope.  The act of
  165. Xrunning a program using the Library is not restricted, and output from
  166. Xsuch a program is covered only if its contents constitute a work based
  167. Xon the Library (independent of the use of the Library in a tool for
  168. Xwriting it).  Whether that is true depends on what the Library does
  169. Xand what the program that uses the Library does.
  170. X  
  171. X  1. You may copy and distribute verbatim copies of the Library's
  172. Xcomplete source code as you receive it, in any medium, provided that
  173. Xyou conspicuously and appropriately publish on each copy an
  174. Xappropriate copyright notice and disclaimer of warranty; keep intact
  175. Xall the notices that refer to this License and to the absence of any
  176. Xwarranty; and distribute a copy of this License along with the
  177. XLibrary.
  178. X
  179. X  You may charge a fee for the physical act of transferring a copy,
  180. Xand you may at your option offer warranty protection in exchange for a
  181. Xfee.
  182. X
  183. X  2. You may modify your copy or copies of the Library or any portion
  184. Xof it, thus forming a work based on the Library, and copy and
  185. Xdistribute such modifications or work under the terms of Section 1
  186. Xabove, provided that you also meet all of these conditions:
  187. X
  188. X    a) The modified work must itself be a software library.
  189. X
  190. X    b) You must cause the files modified to carry prominent notices
  191. X    stating that you changed the files and the date of any change.
  192. X
  193. X    c) You must cause the whole of the work to be licensed at no
  194. X    charge to all third parties under the terms of this License.
  195. X
  196. X    d) If a facility in the modified Library refers to a function or a
  197. X    table of data to be supplied by an application program that uses
  198. X    the facility, other than as an argument passed when the facility
  199. X    is invoked, then you must make a good faith effort to ensure that,
  200. X    in the event an application does not supply such function or
  201. X    table, the facility still operates, and performs whatever part of
  202. X    its purpose remains meaningful.
  203. X
  204. X    (For example, a function in a library to compute square roots has
  205. X    a purpose that is entirely well-defined independent of the
  206. X    application.  Therefore, Subsection 2d requires that any
  207. X    application-supplied function or table used by this function must
  208. X    be optional: if the application does not supply it, the square
  209. X    root function must still compute square roots.)
  210. X
  211. XThese requirements apply to the modified work as a whole.  If
  212. Xidentifiable sections of that work are not derived from the Library,
  213. Xand can be reasonably considered independent and separate works in
  214. Xthemselves, then this License, and its terms, do not apply to those
  215. Xsections when you distribute them as separate works.  But when you
  216. Xdistribute the same sections as part of a whole which is a work based
  217. Xon the Library, the distribution of the whole must be on the terms of
  218. Xthis License, whose permissions for other licensees extend to the
  219. Xentire whole, and thus to each and every part regardless of who wrote
  220. Xit.
  221. X
  222. XThus, it is not the intent of this section to claim rights or contest
  223. Xyour rights to work written entirely by you; rather, the intent is to
  224. Xexercise the right to control the distribution of derivative or
  225. Xcollective works based on the Library.
  226. X
  227. XIn addition, mere aggregation of another work not based on the Library
  228. Xwith the Library (or with a work based on the Library) on a volume of
  229. Xa storage or distribution medium does not bring the other work under
  230. Xthe scope of this License.
  231. X
  232. X  3. You may opt to apply the terms of the ordinary GNU General Public
  233. XLicense instead of this License to a given copy of the Library.  To do
  234. Xthis, you must alter all the notices that refer to this License, so
  235. Xthat they refer to the ordinary GNU General Public License, version 2,
  236. Xinstead of to this License.  (If a newer version than version 2 of the
  237. Xordinary GNU General Public License has appeared, then you can specify
  238. Xthat version instead if you wish.)  Do not make any other change in
  239. Xthese notices.
  240. X
  241. X  Once this change is made in a given copy, it is irreversible for
  242. Xthat copy, so the ordinary GNU General Public License applies to all
  243. Xsubsequent copies and derivative works made from that copy.
  244. X
  245. X  This option is useful when you wish to copy part of the code of
  246. Xthe Library into a program that is not a library.
  247. X
  248. X  4. You may copy and distribute the Library (or a portion or
  249. Xderivative of it, under Section 2) in object code or executable form
  250. Xunder the terms of Sections 1 and 2 above provided that you accompany
  251. Xit with the complete corresponding machine-readable source code, which
  252. Xmust be distributed under the terms of Sections 1 and 2 above on a
  253. Xmedium customarily used for software interchange.
  254. X
  255. X  If distribution of object code is made by offering access to copy
  256. Xfrom a designated place, then offering equivalent access to copy the
  257. Xsource code from the same place satisfies the requirement to
  258. Xdistribute the source code, even though third parties are not
  259. Xcompelled to copy the source along with the object code.
  260. X
  261. X  5. A program that contains no derivative of any portion of the
  262. XLibrary, but is designed to work with the Library by being compiled or
  263. Xlinked with it, is called a "work that uses the Library".  Such a
  264. Xwork, in isolation, is not a derivative work of the Library, and
  265. Xtherefore falls outside the scope of this License.
  266. X
  267. X  However, linking a "work that uses the Library" with the Library
  268. Xcreates an executable that is a derivative of the Library (because it
  269. Xcontains portions of the Library), rather than a "work that uses the
  270. Xlibrary".  The executable is therefore covered by this License.
  271. XSection 6 states terms for distribution of such executables.
  272. X
  273. X  When a "work that uses the Library" uses material from a header file
  274. Xthat is part of the Library, the object code for the work may be a
  275. Xderivative work of the Library even though the source code is not.
  276. XWhether this is true is especially significant if the work can be
  277. Xlinked without the Library, or if the work is itself a library.  The
  278. Xthreshold for this to be true is not precisely defined by law.
  279. X
  280. X  If such an object file uses only numerical parameters, data
  281. Xstructure layouts and accessors, and small macros and small inline
  282. Xfunctions (ten lines or less in length), then the use of the object
  283. Xfile is unrestricted, regardless of whether it is legally a derivative
  284. Xwork.  (Executables containing this object code plus portions of the
  285. XLibrary will still fall under Section 6.)
  286. X
  287. X  Otherwise, if the work is a derivative of the Library, you may
  288. Xdistribute the object code for the work under the terms of Section 6.
  289. XAny executables containing that work also fall under Section 6,
  290. Xwhether or not they are linked directly with the Library itself.
  291. X
  292. X  6. As an exception to the Sections above, you may also compile or
  293. Xlink a "work that uses the Library" with the Library to produce a
  294. Xwork containing portions of the Library, and distribute that work
  295. Xunder terms of your choice, provided that the terms permit
  296. Xmodification of the work for the customer's own use and reverse
  297. Xengineering for debugging such modifications.
  298. X
  299. X  You must give prominent notice with each copy of the work that the
  300. XLibrary is used in it and that the Library and its use are covered by
  301. Xthis License.  You must supply a copy of this License.  If the work
  302. Xduring execution displays copyright notices, you must include the
  303. Xcopyright notice for the Library among them, as well as a reference
  304. Xdirecting the user to the copy of this License.  Also, you must do one
  305. Xof these things:
  306. X
  307. X    a) Accompany the work with the complete corresponding
  308. X    machine-readable source code for the Library including whatever
  309. X    changes were used in the work (which must be distributed under
  310. X    Sections 1 and 2 above); and, if the work is an executable linked
  311. X    with the Library, with the complete machine-readable "work that
  312. X    uses the Library", as object code and/or source code, so that the
  313. X    user can modify the Library and then relink to produce a modified
  314. X    executable containing the modified Library.  (It is understood
  315. X    that the user who changes the contents of definitions files in the
  316. X    Library will not necessarily be able to recompile the application
  317. X    to use the modified definitions.)
  318. X
  319. X    b) Accompany the work with a written offer, valid for at
  320. X    least three years, to give the same user the materials
  321. X    specified in Subsection 6a, above, for a charge no more
  322. X    than the cost of performing this distribution.
  323. X
  324. X    c) If distribution of the work is made by offering access to copy
  325. X    from a designated place, offer equivalent access to copy the above
  326. X    specified materials from the same place.
  327. X
  328. X    d) Verify that the user has already received a copy of these
  329. X    materials or that you have already sent this user a copy.
  330. X
  331. X  For an executable, the required form of the "work that uses the
  332. XLibrary" must include any data and utility programs needed for
  333. Xreproducing the executable from it.  However, as a special exception,
  334. Xthe source code distributed need not include anything that is normally
  335. Xdistributed (in either source or binary form) with the major
  336. Xcomponents (compiler, kernel, and so on) of the operating system on
  337. Xwhich the executable runs, unless that component itself accompanies
  338. Xthe executable.
  339. X
  340. X  It may happen that this requirement contradicts the license
  341. Xrestrictions of other proprietary libraries that do not normally
  342. Xaccompany the operating system.  Such a contradiction means you cannot
  343. Xuse both them and the Library together in an executable that you
  344. Xdistribute.
  345. X
  346. X  7. You may place library facilities that are a work based on the
  347. XLibrary side-by-side in a single library together with other library
  348. Xfacilities not covered by this License, and distribute such a combined
  349. Xlibrary, provided that the separate distribution of the work based on
  350. Xthe Library and of the other library facilities is otherwise
  351. Xpermitted, and provided that you do these two things:
  352. X
  353. X    a) Accompany the combined library with a copy of the same work
  354. X    based on the Library, uncombined with any other library
  355. X    facilities.  This must be distributed under the terms of the
  356. X    Sections above.
  357. X
  358. X    b) Give prominent notice with the combined library of the fact
  359. X    that part of it is a work based on the Library, and explaining
  360. X    where to find the accompanying uncombined form of the same work.
  361. X
  362. X  8. You may not copy, modify, sublicense, link with, or distribute
  363. Xthe Library except as expressly provided under this License.  Any
  364. Xattempt otherwise to copy, modify, sublicense, link with, or
  365. Xdistribute the Library is void, and will automatically terminate your
  366. Xrights under this License.  However, parties who have received copies,
  367. Xor rights, from you under this License will not have their licenses
  368. Xterminated so long as such parties remain in full compliance.
  369. X
  370. X  9. You are not required to accept this License, since you have not
  371. Xsigned it.  However, nothing else grants you permission to modify or
  372. Xdistribute the Library or its derivative works.  These actions are
  373. Xprohibited by law if you do not accept this License.  Therefore, by
  374. Xmodifying or distributing the Library (or any work based on the
  375. XLibrary), you indicate your acceptance of this License to do so, and
  376. Xall its terms and conditions for copying, distributing or modifying
  377. Xthe Library or works based on it.
  378. X
  379. X  10. Each time you redistribute the Library (or any work based on the
  380. XLibrary), the recipient automatically receives a license from the
  381. Xoriginal licensor to copy, distribute, link with or modify the Library
  382. Xsubject to these terms and conditions.  You may not impose any further
  383. Xrestrictions on the recipients' exercise of the rights granted herein.
  384. XYou are not responsible for enforcing compliance by third parties to
  385. Xthis License.
  386. X
  387. X  11. If, as a consequence of a court judgment or allegation of patent
  388. Xinfringement or for any other reason (not limited to patent issues),
  389. Xconditions are imposed on you (whether by court order, agreement or
  390. Xotherwise) that contradict the conditions of this License, they do not
  391. Xexcuse you from the conditions of this License.  If you cannot
  392. Xdistribute so as to satisfy simultaneously your obligations under this
  393. XLicense and any other pertinent obligations, then as a consequence you
  394. Xmay not distribute the Library at all.  For example, if a patent
  395. Xlicense would not permit royalty-free redistribution of the Library by
  396. Xall those who receive copies directly or indirectly through you, then
  397. Xthe only way you could satisfy both it and this License would be to
  398. Xrefrain entirely from distribution of the Library.
  399. X
  400. XIf any portion of this section is held invalid or unenforceable under any
  401. Xparticular circumstance, the balance of the section is intended to apply,
  402. Xand the section as a whole is intended to apply in other circumstances.
  403. X
  404. XIt is not the purpose of this section to induce you to infringe any
  405. Xpatents or other property right claims or to contest validity of any
  406. Xsuch claims; this section has the sole purpose of protecting the
  407. Xintegrity of the free software distribution system which is
  408. Ximplemented by public license practices.  Many people have made
  409. Xgenerous contributions to the wide range of software distributed
  410. Xthrough that system in reliance on consistent application of that
  411. Xsystem; it is up to the author/donor to decide if he or she is willing
  412. Xto distribute software through any other system and a licensee cannot
  413. Ximpose that choice.
  414. X
  415. XThis section is intended to make thoroughly clear what is believed to
  416. Xbe a consequence of the rest of this License.
  417. X
  418. X  12. If the distribution and/or use of the Library is restricted in
  419. Xcertain countries either by patents or by copyrighted interfaces, the
  420. Xoriginal copyright holder who places the Library under this License may add
  421. Xan explicit geographical distribution limitation excluding those countries,
  422. Xso that distribution is permitted only in or among countries not thus
  423. Xexcluded.  In such case, this License incorporates the limitation as if
  424. Xwritten in the body of this License.
  425. X
  426. X  13. The Free Software Foundation may publish revised and/or new
  427. Xversions of the Library General Public License from time to time.
  428. XSuch new versions will be similar in spirit to the present version,
  429. Xbut may differ in detail to address new problems or concerns.
  430. X
  431. XEach version is given a distinguishing version number.  If the Library
  432. Xspecifies a version number of this License which applies to it and
  433. X"any later version", you have the option of following the terms and
  434. Xconditions either of that version or of any later version published by
  435. Xthe Free Software Foundation.  If the Library does not specify a
  436. Xlicense version number, you may choose any version ever published by
  437. Xthe Free Software Foundation.
  438. X
  439. X  14. If you wish to incorporate parts of the Library into other free
  440. Xprograms whose distribution conditions are incompatible with these,
  441. Xwrite to the author to ask for permission.  For software which is
  442. Xcopyrighted by the Free Software Foundation, write to the Free
  443. XSoftware Foundation; we sometimes make exceptions for this.  Our
  444. Xdecision will be guided by the two goals of preserving the free status
  445. Xof all derivatives of our free software and of promoting the sharing
  446. Xand reuse of software generally.
  447. X
  448. X                NO WARRANTY
  449. X
  450. X  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  451. XWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  452. XEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  453. XOTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  454. XKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  455. XIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  456. XPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  457. XLIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  458. XTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  459. X
  460. X  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  461. XWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  462. XAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  463. XFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  464. XCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  465. XLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  466. XRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  467. XFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  468. XSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  469. XDAMAGES.
  470. X
  471. X             END OF TERMS AND CONDITIONS
  472. X
  473. X     Appendix: How to Apply These Terms to Your New Libraries
  474. X
  475. X  If you develop a new library, and you want it to be of the greatest
  476. Xpossible use to the public, we recommend making it free software that
  477. Xeveryone can redistribute and change.  You can do so by permitting
  478. Xredistribution under these terms (or, alternatively, under the terms of the
  479. Xordinary General Public License).
  480. X
  481. X  To apply these terms, attach the following notices to the library.  It is
  482. Xsafest to attach them to the start of each source file to most effectively
  483. Xconvey the exclusion of warranty; and each file should have at least the
  484. X"copyright" line and a pointer to where the full notice is found.
  485. X
  486. X    <one line to give the library's name and a brief idea of what it does.>
  487. X    Copyright (C) <year>  <name of author>
  488. X
  489. X    This library is free software; you can redistribute it and/or
  490. X    modify it under the terms of the GNU Library General Public
  491. X    License as published by the Free Software Foundation; either
  492. X    version 2 of the License, or (at your option) any later version.
  493. X
  494. X    This library is distributed in the hope that it will be useful,
  495. X    but WITHOUT ANY WARRANTY; without even the implied warranty of
  496. X    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  497. X    Library General Public License for more details.
  498. X
  499. X    You should have received a copy of the GNU Library General Public
  500. X    License along with this library; if not, write to the Free
  501. X    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  502. X
  503. XAlso add information on how to contact you by electronic and paper mail.
  504. X
  505. XYou should also get your employer (if you work as a programmer) or your
  506. Xschool, if any, to sign a "copyright disclaimer" for the library, if
  507. Xnecessary.  Here is a sample; alter the names:
  508. X
  509. X  Yoyodyne, Inc., hereby disclaims all copyright interest in the
  510. X  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  511. X
  512. X  <signature of Ty Coon>, 1 April 1990
  513. X  Ty Coon, President of Vice
  514. X
  515. XThat's all there is to it!
  516. END_OF_FILE
  517. if test 25509 -ne `wc -c <'COPYING'`; then
  518.     echo shar: \"'COPYING'\" unpacked with wrong size!
  519. fi
  520. # end of 'COPYING'
  521. fi
  522. echo shar: End of archive 4 \(of 4\).
  523. cp /dev/null ark4isdone
  524. MISSING=""
  525. for I in 1 2 3 4 ; do
  526.     if test ! -f ark${I}isdone ; then
  527.     MISSING="${MISSING} ${I}"
  528.     fi
  529. done
  530. if test "${MISSING}" = "" ; then
  531.     echo You have unpacked all 4 archives.
  532.     rm -f ark[1-9]isdone
  533. else
  534.     echo You still need to unpack the following archives:
  535.     echo "        " ${MISSING}
  536. fi
  537. ##  End of shell archive.
  538. exit 0
  539. exit 0 # Just in case...
  540.