home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gdb-4.9 / gdb / gdb.info-7 < prev    next >
Encoding:
GNU Info File  |  1993-05-12  |  29.4 KB  |  657 lines

  1. This is Info file ./gdb.info, produced by Makeinfo-1.52 from the input
  2. file gdb.texinfo.
  3.  
  4. START-INFO-DIR-ENTRY
  5. * Gdb: (gdb).                   The GNU debugger.
  6. END-INFO-DIR-ENTRY
  7.    This file documents the GNU debugger GDB.
  8.  
  9.    This is Edition 4.09, April 1993, of `Debugging with GDB: the GNU
  10. Source-Level Debugger' for GDB Version 4.9.
  11.  
  12.    Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993 Free Software
  13. Foundation, Inc.
  14.  
  15.    Permission is granted to make and distribute verbatim copies of this
  16. manual provided the copyright notice and this permission notice are
  17. preserved on all copies.
  18.  
  19.    Permission is granted to copy and distribute modified versions of
  20. this manual under the conditions for verbatim copying, provided also
  21. that the section entitled "GNU General Public License" is included
  22. exactly as in the original, and provided that the entire resulting
  23. derived work is distributed under the terms of a permission notice
  24. identical to this one.
  25.  
  26.    Permission is granted to copy and distribute translations of this
  27. manual into another language, under the above conditions for modified
  28. versions, except that the section entitled "GNU General Public License"
  29. may be included in a translation approved by the Free Software
  30. Foundation instead of in the original English.
  31.  
  32. 
  33. File: gdb.info,  Node: Installing GDB,  Next: Copying,  Prev: Formatting Documentation,  Up: Top
  34.  
  35. Installing GDB
  36. **************
  37.  
  38.    GDB comes with a `configure' script that automates the process of
  39. preparing GDB for installation; you can then use `make' to build the
  40. `gdb' program.
  41.  
  42.    The GDB distribution includes all the source code you need for GDB in
  43. a single directory, whose name is usually composed by appending the
  44. version number to `gdb'.
  45.  
  46.    For example, the GDB version 4.9 distribution is in the `gdb-4.9'
  47. directory.  That directory contains:
  48.  
  49. `gdb-4.9/configure (and supporting files)'
  50.      script for configuring GDB and all its supporting libraries.
  51.  
  52. `gdb-4.9/gdb'
  53.      the source specific to GDB itself
  54.  
  55. `gdb-4.9/bfd'
  56.      source for the Binary File Descriptor library
  57.  
  58. `gdb-4.9/include'
  59.      GNU include files
  60.  
  61. `gdb-4.9/libiberty'
  62.      source for the `-liberty' free software library
  63.  
  64. `gdb-4.9/opcodes'
  65.      source for the library of opcode tables and disassemblers
  66.  
  67. `gdb-4.9/readline'
  68.      source for the GNU command-line interface
  69.  
  70. `gdb-4.9/glob'
  71.      source for the GNU filename pattern-matching subroutine
  72.  
  73. `gdb-4.9/mmalloc'
  74.      source for the GNU memory-mapped malloc package
  75.  
  76.    The simplest way to configure and build GDB is to run `configure'
  77. from the `gdb-VERSION-NUMBER' source directory, which in this example
  78. is the `gdb-4.9' directory.
  79.  
  80.    First switch to the `gdb-VERSION-NUMBER' source directory if you are
  81. not already in it; then run `configure'.  Pass the identifier for the
  82. platform on which GDB will run as an argument.
  83.  
  84.    For example:
  85.  
  86.      cd gdb-4.9
  87.      ./configure HOST
  88.      make
  89.  
  90. where HOST is an identifier such as `sun4' or `decstation', that
  91. identifies the platform where GDB will run.
  92.  
  93.    Running `configure HOST' and then running `make' builds the `bfd',
  94. `readline', `mmalloc', and `libiberty' libraries, then `gdb' itself.
  95. The configured source files, and the binaries, are left in the
  96. corresponding source directories.
  97.  
  98.    `configure' is a Bourne-shell (`/bin/sh') script; if your system
  99. does not recognize this automatically when you run a different shell,
  100. you may need to run `sh' on it explicitly:
  101.  
  102.      sh configure HOST
  103.  
  104.    If you run `configure' from a directory that contains source
  105. directories for multiple libraries or programs, such as the `gdb-4.9'
  106. source directory for version 4.9, `configure' creates configuration
  107. files for every directory level underneath (unless you tell it not to,
  108. with the `--norecursion' option).
  109.  
  110.    You can run the `configure' script from any of the subordinate
  111. directories in the GDB distribution, if you only want to configure that
  112. subdirectory; but be sure to specify a path to it.
  113.  
  114.    For example, with version 4.9, type the following to configure only
  115. the `bfd' subdirectory:
  116.  
  117.      cd gdb-4.9/bfd
  118.      ../configure HOST
  119.  
  120.    You can install `gdb' anywhere; it has no hardwired paths.  However,
  121. you should make sure that the shell on your path (named by the `SHELL'
  122. environment variable) is publicly readable.  Remember that GDB uses the
  123. shell to start your program--some systems refuse to let GDB debug child
  124. processes whose programs are not readable.
  125.  
  126. * Menu:
  127.  
  128. * Separate Objdir::             Compiling GDB in another directory
  129. * Config Names::                Specifying names for hosts and targets
  130. * configure Options::           Summary of options for configure
  131.  
  132. 
  133. File: gdb.info,  Node: Separate Objdir,  Next: Config Names,  Up: Installing GDB
  134.  
  135. Compiling GDB in another directory
  136. ==================================
  137.  
  138.    If you want to run GDB versions for several host or target machines,
  139. you need a different `gdb' compiled for each combination of host and
  140. target.  `configure' is designed to make this easy by allowing you to
  141. generate each configuration in a separate subdirectory, rather than in
  142. the source directory.  If your `make' program handles the `VPATH'
  143. feature (GNU `make' does), running `make' in each of these directories
  144. builds the `gdb' program specified there.
  145.  
  146.    To build `gdb' in a separate directory, run `configure' with the
  147. `--srcdir' option to specify where to find the source.  (You also need
  148. to specify a path to find `configure' itself from your working
  149. directory.  If the path to `configure' would be the same as the
  150. argument to `--srcdir', you can leave out the `--srcdir' option; it
  151. will be assumed.)
  152.  
  153.    For example, with version 4.9, you can build GDB in a separate
  154. directory for a Sun 4 like this:
  155.  
  156.      cd gdb-4.9
  157.      mkdir ../gdb-sun4
  158.      cd ../gdb-sun4
  159.      ../gdb-4.9/configure sun4
  160.      make
  161.  
  162.    When `configure' builds a configuration using a remote source
  163. directory, it creates a tree for the binaries with the same structure
  164. (and using the same names) as the tree under the source directory.  In
  165. the example, you'd find the Sun 4 library `libiberty.a' in the
  166. directory `gdb-sun4/libiberty', and GDB itself in `gdb-sun4/gdb'.
  167.  
  168.    One popular reason to build several GDB configurations in separate
  169. directories is to configure GDB for cross-compiling (where GDB runs on
  170. one machine--the host--while debugging programs that run on another
  171. machine--the target).  You specify a cross-debugging target by giving
  172. the `--target=TARGET' option to `configure'.
  173.  
  174.    When you run `make' to build a program or library, you must run it
  175. in a configured directory--whatever directory you were in when you
  176. called `configure' (or one of its subdirectories).
  177.  
  178.    The `Makefile' that `configure' generates in each source directory
  179. also runs recursively.  If you type `make' in a source directory such
  180. as `gdb-4.9' (or in a separate configured directory configured with
  181. `--srcdir=PATH/gdb-4.9'), you will build all the required libraries,
  182. and then build GDB.
  183.  
  184.    When you have multiple hosts or targets configured in separate
  185. directories, you can run `make' on them in parallel (for example, if
  186. they are NFS-mounted on each of the hosts); they will not interfere
  187. with each other.
  188.  
  189. 
  190. File: gdb.info,  Node: Config Names,  Next: configure Options,  Prev: Separate Objdir,  Up: Installing GDB
  191.  
  192. Specifying names for hosts and targets
  193. ======================================
  194.  
  195.    The specifications used for hosts and targets in the `configure'
  196. script are based on a three-part naming scheme, but some short
  197. predefined aliases are also supported.  The full naming scheme encodes
  198. three pieces of information in the following pattern:
  199.  
  200.      ARCHITECTURE-VENDOR-OS
  201.  
  202.    For example, you can use the alias `sun4' as a HOST argument, or as
  203. the value for TARGET in a `--target=TARGET' option.  The equivalent
  204. full name is `sparc-sun-sunos4'.
  205.  
  206.    The `configure' script accompanying GDB does not provide any query
  207. facility to list all supported host and target names or aliases.
  208. `configure' calls the Bourne shell script `config.sub' to map
  209. abbreviations to full names; you can read the script, if you wish, or
  210. you can use it to test your guesses on abbreviations--for example:
  211.  
  212.      % sh config.sub sun4
  213.      sparc-sun-sunos411
  214.      % sh config.sub sun3
  215.      m68k-sun-sunos411
  216.      % sh config.sub decstation
  217.      mips-dec-ultrix42
  218.      % sh config.sub hp300bsd
  219.      m68k-hp-bsd
  220.      % sh config.sub i386v
  221.      i386-unknown-sysv
  222.      % sh config.sub i786v
  223.      Invalid configuration `i786v': machine `i786v' not recognized
  224.  
  225. `config.sub' is also distributed in the GDB source directory
  226. (`gdb-4.9', for version 4.9).
  227.  
  228. 
  229. File: gdb.info,  Node: configure Options,  Prev: Config Names,  Up: Installing GDB
  230.  
  231. `configure' options
  232. ===================
  233.  
  234.    Here is a summary of the `configure' options and arguments that are
  235. most often useful for building GDB.  `configure' also has several other
  236. options not listed here.  *note : (configure.info)What Configure Does,
  237. for a full explanation of `configure'.
  238.  
  239.      configure [--help]
  240.                [--prefix=DIR]
  241.                [--srcdir=PATH]
  242.                [--norecursion] [--rm]
  243.                [--target=TARGET] HOST
  244.  
  245. You may introduce options with a single `-' rather than `--' if you
  246. prefer; but you may abbreviate option names if you use `--'.
  247.  
  248. `--help'
  249.      Display a quick summary of how to invoke `configure'.
  250.  
  251. `-prefix=DIR'
  252.      Configure the source to install programs and files under directory
  253.      `DIR'.
  254.  
  255. `--srcdir=PATH'
  256.      *Warning: using this option requires GNU `make', or another `make'
  257.      that implements the `VPATH' feature.*
  258.      Use this option to make configurations in directories separate
  259.      from the GDB source directories.  Among other things, you can use
  260.      this to build (or maintain) several configurations simultaneously,
  261.      in separate directories.  `configure' writes configuration
  262.      specific files in the current directory, but arranges for them to
  263.      use the source in the directory PATH.  `configure' will create
  264.      directories under the working directory in parallel to the source
  265.      directories below PATH.
  266.  
  267. `--norecursion'
  268.      Configure only the directory level where `configure' is executed;
  269.      do not propagate configuration to subdirectories.
  270.  
  271. `--rm'
  272.      Remove the configuration that the other arguments specify.
  273.  
  274. `--target=TARGET'
  275.      Configure GDB for cross-debugging programs running on the specified
  276.      TARGET.  Without this option, GDB is configured to debug programs
  277.      that run on the same machine (HOST) as GDB itself.
  278.  
  279.      There is no convenient way to generate a list of all available
  280.      targets.
  281.  
  282. `HOST ...'
  283.      Configure GDB to run on the specified HOST.
  284.  
  285.      There is no convenient way to generate a list of all available
  286.      hosts.
  287.  
  288. `configure' accepts other options, for compatibility with configuring
  289. other GNU tools recursively; but these are the only options that affect
  290. GDB or its supporting libraries.
  291.  
  292. 
  293. File: gdb.info,  Node: Copying,  Next: Index,  Prev: Installing GDB,  Up: Top
  294.  
  295. GNU GENERAL PUBLIC LICENSE
  296. **************************
  297.  
  298.                          Version 2, June 1991
  299.  
  300.      Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  301.      675 Mass Ave, Cambridge, MA 02139, USA
  302.      
  303.      Everyone is permitted to copy and distribute verbatim copies
  304.      of this license document, but changing it is not allowed.
  305.  
  306. Preamble
  307. ========
  308.  
  309.    The licenses for most software are designed to take away your
  310. freedom to share and change it.  By contrast, the GNU General Public
  311. License is intended to guarantee your freedom to share and change free
  312. software--to make sure the software is free for all its users.  This
  313. General Public License applies to most of the Free Software
  314. Foundation's software and to any other program whose authors commit to
  315. using it.  (Some other Free Software Foundation software is covered by
  316. the GNU Library General Public License instead.)  You can apply it to
  317. your programs, too.
  318.  
  319.    When we speak of free software, we are referring to freedom, not
  320. price.  Our General Public Licenses are designed to make sure that you
  321. have the freedom to distribute copies of free software (and charge for
  322. this service if you wish), that you receive source code or can get it
  323. if you want it, that you can change the software or use pieces of it in
  324. new free programs; and that you know you can do these things.
  325.  
  326.    To protect your rights, we need to make restrictions that forbid
  327. anyone to deny you these rights or to ask you to surrender the rights.
  328. These restrictions translate to certain responsibilities for you if you
  329. distribute copies of the software, or if you modify it.
  330.  
  331.    For example, if you distribute copies of such a program, whether
  332. gratis or for a fee, you must give the recipients all the rights that
  333. you have.  You must make sure that they, too, receive or can get the
  334. source code.  And you must show them these terms so they know their
  335. rights.
  336.  
  337.    We protect your rights with two steps: (1) copyright the software,
  338. and (2) offer you this license which gives you legal permission to copy,
  339. distribute and/or modify the software.
  340.  
  341.    Also, for each author's protection and ours, we want to make certain
  342. that everyone understands that there is no warranty for this free
  343. software.  If the software is modified by someone else and passed on, we
  344. want its recipients to know that what they have is not the original, so
  345. that any problems introduced by others will not reflect on the original
  346. authors' reputations.
  347.  
  348.    Finally, any free program is threatened constantly by software
  349. patents.  We wish to avoid the danger that redistributors of a free
  350. program will individually obtain patent licenses, in effect making the
  351. program proprietary.  To prevent this, we have made it clear that any
  352. patent must be licensed for everyone's free use or not licensed at all.
  353.  
  354.    The precise terms and conditions for copying, distribution and
  355. modification follow.
  356.  
  357.     TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  358.  
  359.   1. This License applies to any program or other work which contains a
  360.      notice placed by the copyright holder saying it may be distributed
  361.      under the terms of this General Public License.  The "Program",
  362.      below, refers to any such program or work, and a "work based on
  363.      the Program" means either the Program or any derivative work under
  364.      copyright law: that is to say, a work containing the Program or a
  365.      portion of it, either verbatim or with modifications and/or
  366.      translated into another language.  (Hereinafter, translation is
  367.      included without limitation in the term "modification".)  Each
  368.      licensee is addressed as "you".
  369.  
  370.      Activities other than copying, distribution and modification are
  371.      not covered by this License; they are outside its scope.  The act
  372.      of running the Program is not restricted, and the output from the
  373.      Program is covered only if its contents constitute a work based on
  374.      the Program (independent of having been made by running the
  375.      Program).  Whether that is true depends on what the Program does.
  376.  
  377.   2. You may copy and distribute verbatim copies of the Program's
  378.      source code as you receive it, in any medium, provided that you
  379.      conspicuously and appropriately publish on each copy an appropriate
  380.      copyright notice and disclaimer of warranty; keep intact all the
  381.      notices that refer to this License and to the absence of any
  382.      warranty; and give any other recipients of the Program a copy of
  383.      this License along with the Program.
  384.  
  385.      You may charge a fee for the physical act of transferring a copy,
  386.      and you may at your option offer warranty protection in exchange
  387.      for a fee.
  388.  
  389.   3. You may modify your copy or copies of the Program or any portion
  390.      of it, thus forming a work based on the Program, and copy and
  391.      distribute such modifications or work under the terms of Section 1
  392.      above, provided that you also meet all of these conditions:
  393.  
  394.        a. You must cause the modified files to carry prominent notices
  395.           stating that you changed the files and the date of any change.
  396.  
  397.        b. You must cause any work that you distribute or publish, that
  398.           in whole or in part contains or is derived from the Program
  399.           or any part thereof, to be licensed as a whole at no charge
  400.           to all third parties under the terms of this License.
  401.  
  402.        c. If the modified program normally reads commands interactively
  403.           when run, you must cause it, when started running for such
  404.           interactive use in the most ordinary way, to print or display
  405.           an announcement including an appropriate copyright notice and
  406.           a notice that there is no warranty (or else, saying that you
  407.           provide a warranty) and that users may redistribute the
  408.           program under these conditions, and telling the user how to
  409.           view a copy of this License.  (Exception: if the Program
  410.           itself is interactive but does not normally print such an
  411.           announcement, your work based on the Program is not required
  412.           to print an announcement.)
  413.  
  414.      These requirements apply to the modified work as a whole.  If
  415.      identifiable sections of that work are not derived from the
  416.      Program, and can be reasonably considered independent and separate
  417.      works in themselves, then this License, and its terms, do not
  418.      apply to those sections when you distribute them as separate
  419.      works.  But when you distribute the same sections as part of a
  420.      whole which is a work based on the Program, the distribution of
  421.      the whole must be on the terms of this License, whose permissions
  422.      for other licensees extend to the entire whole, and thus to each
  423.      and every part regardless of who wrote it.
  424.  
  425.      Thus, it is not the intent of this section to claim rights or
  426.      contest your rights to work written entirely by you; rather, the
  427.      intent is to exercise the right to control the distribution of
  428.      derivative or collective works based on the Program.
  429.  
  430.      In addition, mere aggregation of another work not based on the
  431.      Program with the Program (or with a work based on the Program) on
  432.      a volume of a storage or distribution medium does not bring the
  433.      other work under the scope of this License.
  434.  
  435.   4. You may copy and distribute the Program (or a work based on it,
  436.      under Section 2) in object code or executable form under the terms
  437.      of Sections 1 and 2 above provided that you also do one of the
  438.      following:
  439.  
  440.        a. Accompany it with the complete corresponding machine-readable
  441.           source code, which must be distributed under the terms of
  442.           Sections 1 and 2 above on a medium customarily used for
  443.           software interchange; or,
  444.  
  445.        b. Accompany it with a written offer, valid for at least three
  446.           years, to give any third party, for a charge no more than your
  447.           cost of physically performing source distribution, a complete
  448.           machine-readable copy of the corresponding source code, to be
  449.           distributed under the terms of Sections 1 and 2 above on a
  450.           medium customarily used for software interchange; or,
  451.  
  452.        c. Accompany it with the information you received as to the offer
  453.           to distribute corresponding source code.  (This alternative is
  454.           allowed only for noncommercial distribution and only if you
  455.           received the program in object code or executable form with
  456.           such an offer, in accord with Subsection b above.)
  457.  
  458.      The source code for a work means the preferred form of the work for
  459.      making modifications to it.  For an executable work, complete
  460.      source code means all the source code for all modules it contains,
  461.      plus any associated interface definition files, plus the scripts
  462.      used to control compilation and installation of the executable.
  463.      However, as a special exception, the source code distributed need
  464.      not include anything that is normally distributed (in either
  465.      source or binary form) with the major components (compiler,
  466.      kernel, and so on) of the operating system on which the executable
  467.      runs, unless that component itself accompanies the executable.
  468.  
  469.      If distribution of executable or object code is made by offering
  470.      access to copy from a designated place, then offering equivalent
  471.      access to copy the source code from the same place counts as
  472.      distribution of the source code, even though third parties are not
  473.      compelled to copy the source along with the object code.
  474.  
  475.   5. You may not copy, modify, sublicense, or distribute the Program
  476.      except as expressly provided under this License.  Any attempt
  477.      otherwise to copy, modify, sublicense or distribute the Program is
  478.      void, and will automatically terminate your rights under this
  479.      License.  However, parties who have received copies, or rights,
  480.      from you under this License will not have their licenses
  481.      terminated so long as such parties remain in full compliance.
  482.  
  483.   6. You are not required to accept this License, since you have not
  484.      signed it.  However, nothing else grants you permission to modify
  485.      or distribute the Program or its derivative works.  These actions
  486.      are prohibited by law if you do not accept this License.
  487.      Therefore, by modifying or distributing the Program (or any work
  488.      based on the Program), you indicate your acceptance of this
  489.      License to do so, and all its terms and conditions for copying,
  490.      distributing or modifying the Program or works based on it.
  491.  
  492.   7. Each time you redistribute the Program (or any work based on the
  493.      Program), the recipient automatically receives a license from the
  494.      original licensor to copy, distribute or modify the Program
  495.      subject to these terms and conditions.  You may not impose any
  496.      further restrictions on the recipients' exercise of the rights
  497.      granted herein.  You are not responsible for enforcing compliance
  498.      by third parties to this License.
  499.  
  500.   8. If, as a consequence of a court judgment or allegation of patent
  501.      infringement or for any other reason (not limited to patent
  502.      issues), conditions are imposed on you (whether by court order,
  503.      agreement or otherwise) that contradict the conditions of this
  504.      License, they do not excuse you from the conditions of this
  505.      License.  If you cannot distribute so as to satisfy simultaneously
  506.      your obligations under this License and any other pertinent
  507.      obligations, then as a consequence you may not distribute the
  508.      Program at all.  For example, if a patent license would not permit
  509.      royalty-free redistribution of the Program by all those who
  510.      receive copies directly or indirectly through you, then the only
  511.      way you could satisfy both it and this License would be to refrain
  512.      entirely from distribution of the Program.
  513.  
  514.      If any portion of this section is held invalid or unenforceable
  515.      under any particular circumstance, the balance of the section is
  516.      intended to apply and the section as a whole is intended to apply
  517.      in other circumstances.
  518.  
  519.      It is not the purpose of this section to induce you to infringe any
  520.      patents or other property right claims or to contest validity of
  521.      any such claims; this section has the sole purpose of protecting
  522.      the integrity of the free software distribution system, which is
  523.      implemented by public license practices.  Many people have made
  524.      generous contributions to the wide range of software distributed
  525.      through that system in reliance on consistent application of that
  526.      system; it is up to the author/donor to decide if he or she is
  527.      willing to distribute software through any other system and a
  528.      licensee cannot impose that choice.
  529.  
  530.      This section is intended to make thoroughly clear what is believed
  531.      to be a consequence of the rest of this License.
  532.  
  533.   9. If the distribution and/or use of the Program is restricted in
  534.      certain countries either by patents or by copyrighted interfaces,
  535.      the original copyright holder who places the Program under this
  536.      License may add an explicit geographical distribution limitation
  537.      excluding those countries, so that distribution is permitted only
  538.      in or among countries not thus excluded.  In such case, this
  539.      License incorporates the limitation as if written in the body of
  540.      this License.
  541.  
  542.  10. The Free Software Foundation may publish revised and/or new
  543.      versions of the General Public License from time to time.  Such
  544.      new versions will be similar in spirit to the present version, but
  545.      may differ in detail to address new problems or concerns.
  546.  
  547.      Each version is given a distinguishing version number.  If the
  548.      Program specifies a version number of this License which applies
  549.      to it and "any later version", you have the option of following
  550.      the terms and conditions either of that version or of any later
  551.      version published by the Free Software Foundation.  If the Program
  552.      does not specify a version number of this License, you may choose
  553.      any version ever published by the Free Software Foundation.
  554.  
  555.  11. If you wish to incorporate parts of the Program into other free
  556.      programs whose distribution conditions are different, write to the
  557.      author to ask for permission.  For software which is copyrighted
  558.      by the Free Software Foundation, write to the Free Software
  559.      Foundation; we sometimes make exceptions for this.  Our decision
  560.      will be guided by the two goals of preserving the free status of
  561.      all derivatives of our free software and of promoting the sharing
  562.      and reuse of software generally.
  563.  
  564.                                 NO WARRANTY
  565.  
  566.  12. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
  567.      WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
  568.      LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  569.      HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
  570.      WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT
  571.      NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  572.      FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE
  573.      QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
  574.      PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY
  575.      SERVICING, REPAIR OR CORRECTION.
  576.  
  577.  13. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  578.      WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY
  579.      MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE
  580.      LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
  581.      INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
  582.      INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  583.      DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU
  584.      OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY
  585.      OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
  586.      ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  587.  
  588.                       END OF TERMS AND CONDITIONS
  589.  
  590. Applying These Terms to Your New Programs
  591. =========================================
  592.  
  593.    If you develop a new program, and you want it to be of the greatest
  594. possible use to the public, the best way to achieve this is to make it
  595. free software which everyone can redistribute and change under these
  596. terms.
  597.  
  598.    To do so, attach the following notices to the program.  It is safest
  599. to attach them to the start of each source file to most effectively
  600. convey the exclusion of warranty; and each file should have at least
  601. the "copyright" line and a pointer to where the full notice is found.
  602.  
  603.      ONE LINE TO GIVE THE PROGRAM'S NAME AND AN IDEA OF WHAT IT DOES.
  604.      Copyright (C) 19YY  NAME OF AUTHOR
  605.      
  606.      This program is free software; you can redistribute it and/or
  607.      modify it under the terms of the GNU General Public License
  608.      as published by the Free Software Foundation; either version 2
  609.      of the License, or (at your option) any later version.
  610.      
  611.      This program is distributed in the hope that it will be useful,
  612.      but WITHOUT ANY WARRANTY; without even the implied warranty of
  613.      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  614.      GNU General Public License for more details.
  615.      
  616.      You should have received a copy of the GNU General Public License
  617.      along with this program; if not, write to the
  618.      Free Software Foundation, Inc., 675 Mass Ave,
  619.      Cambridge, MA 02139, USA.
  620.  
  621.    Also add information on how to contact you by electronic and paper
  622. mail.
  623.  
  624.    If the program is interactive, make it output a short notice like
  625. this when it starts in an interactive mode:
  626.  
  627.      Gnomovision version 69, Copyright (C) 19YY NAME OF AUTHOR
  628.      Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
  629.      type `show w'.  This is free software, and you are welcome
  630.      to redistribute it under certain conditions; type `show c'
  631.      for details.
  632.  
  633.    The hypothetical commands `show w' and `show c' should show the
  634. appropriate parts of the General Public License.  Of course, the
  635. commands you use may be called something other than `show w' and `show
  636. c'; they could even be mouse-clicks or menu items--whatever suits your
  637. program.
  638.  
  639.    You should also get your employer (if you work as a programmer) or
  640. your school, if any, to sign a "copyright disclaimer" for the program,
  641. if necessary.  Here is a sample; alter the names:
  642.  
  643.      Yoyodyne, Inc., hereby disclaims all copyright
  644.      interest in the program `Gnomovision'
  645.      (which makes passes at compilers) written
  646.      by James Hacker.
  647.      
  648.      SIGNATURE OF TY COON, 1 April 1989
  649.      Ty Coon, President of Vice
  650.  
  651.    This General Public License does not permit incorporating your
  652. program into proprietary programs.  If your program is a subroutine
  653. library, you may consider it more useful to permit linking proprietary
  654. applications with the library.  If this is what you want to do, use the
  655. GNU Library General Public License instead of this License.
  656.  
  657.