home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / gnatvsn.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  51 lines

  1. -----------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              G N A T V S N                               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.103 $                            --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994,1995  NYU, All Rights Reserved    --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  This package spec holds version information for GNAT, GNATBIND and
  26. --  GNATMAKE. It is updated whenever the release number is changed.
  27.  
  28. package Gnatvsn is
  29.  
  30.    Gnat_Version_String : constant String := "2.06";
  31.    --  Version output when GNAT (compiler), GNATBIND, or GNATMAKE is run
  32.    --  (with -gnatv switch set)
  33.  
  34.    Xref_Version : constant String (1 .. 16) := "XREF v1.1       ";
  35.    --  Xref version. Written in the xref files generated by gnatf.
  36.  
  37.    Library_Version : constant String (1 .. 16) := "GNAT Lib v1.2   ";
  38.    --  Library version. This value must be updated whenever any change to the
  39.    --  compiler affects the library formats in such a way as to obsolete
  40.    --  previously compiled library modules.
  41.  
  42.    Standard_Version : String (1 .. 16)  := "                ";
  43.    --  A string identifying the version of Standard. Used for library output
  44.    --  and by the binder to check that all modules use the same version of
  45.    --  Standard (otherwise the bind is not permitted). This is updated
  46.    --  whenever a change to Standard requires complete recompilation. The
  47.    --  actual value of this string is established by the Stand package when
  48.    --  package Standard is constructed.
  49.  
  50. end Gnatvsn;
  51.