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 >
Wrap
Text File
|
1996-09-28
|
3KB
|
51 lines
-----------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T V S N --
-- --
-- S p e c --
-- --
-- $Revision: 1.103 $ --
-- --
-- Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
-- --
------------------------------------------------------------------------------
-- This package spec holds version information for GNAT, GNATBIND and
-- GNATMAKE. It is updated whenever the release number is changed.
package Gnatvsn is
Gnat_Version_String : constant String := "2.06";
-- Version output when GNAT (compiler), GNATBIND, or GNATMAKE is run
-- (with -gnatv switch set)
Xref_Version : constant String (1 .. 16) := "XREF v1.1 ";
-- Xref version. Written in the xref files generated by gnatf.
Library_Version : constant String (1 .. 16) := "GNAT Lib v1.2 ";
-- Library version. This value must be updated whenever any change to the
-- compiler affects the library formats in such a way as to obsolete
-- previously compiled library modules.
Standard_Version : String (1 .. 16) := " ";
-- A string identifying the version of Standard. Used for library output
-- and by the binder to check that all modules use the same version of
-- Standard (otherwise the bind is not permitted). This is updated
-- whenever a change to Standard requires complete recompilation. The
-- actual value of this string is established by the Stand package when
-- package Standard is constructed.
end Gnatvsn;