From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,85d4c2b5b3e9085f X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-02-12 12:44:02 PST Path: supernews.google.com!sn-xit-03!supernews.com!freenix!enst!enst.fr!not-for-mail From: schwarza@gdls.com Newsgroups: comp.lang.ada Subject: Converting from Rational Ada to GNAT 3.13 Date: Mon, 12 Feb 2001 15:38:58 -0500 Organization: ENST, France Sender: comp.lang.ada-admin@ada.eu.org Message-ID: Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: avanie.enst.fr 982010413 29282 137.194.161.2 (12 Feb 2001 20:40:13 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Mon, 12 Feb 2001 20:40:13 +0000 (UTC) To: comp.lang.ada@ada.eu.org Return-Path: X-Mailer: Lotus Notes Release 5.0.1a (Intl) 17 August 1999 X-MIMETrack: Serialize by Router on STL01/SRV/LS/GDYN(Release 5.0.5 |September 22, 2000) at 02/12/2001 03: 38:57 PM, Itemize by SMTP Server on STLHUB/SRV/LS/GDYN(Release 5.0.5 |September 22, 2000) at 02/12/2001 03: 38:57 PM, Serialize by Router on STLHUB/SRV/LS/GDYN(Release 5.0.5 |September 22, 2000) at 02/12/2001 03: 38:59 PM, Serialize complete at 02/12/2001 03: 38:59 PM Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: comp.lang.ada mail<->news gateway List-Unsubscribe: , List-Archive: Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: supernews.google.com comp.lang.ada:5193 Date: 2001-02-12T15:38:58-05:00 Arthur Schwarz: > e.g. The latest is the use of System.Runtime by Rational and it's > rejection by GNAT Rename! for Rat. : package xyxyxy renames System.Runtime; for GNAT : package xyxyxy renames zzzzzzzzzzzzzz; Tried it with the following results: In Rational package (/appl/.../rational.ss/)ada_krn_defs.1.ada including "with System.Runtime" and placing: "package System_Runtime renames System.Runtime;" into the package spec ("package Ada_Krn_Defs is") I retain the error messages. Tried it with the following results: In Rational package (/appl/.../rational.ss/)ada_krn_defs.1.ada commenting "with System.Runtime" and placing: "package System_Runtime renames System.Runtime;" into the package spec ("package Ada_Krn_Defs is") I remove the error messages (bravo and thanks). art