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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,fc43cfad3912b8ad X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!newsfeed.hanau.net!noris.net!news2.arglkargh.de!nuzba.szn.dk!news.jacob-sparre.dk!pnx.dk!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Predefined Packages Date: Thu, 14 Jun 2007 14:58:11 -0500 Organization: Jacob's private Usenet server Message-ID: References: <1181828462.112461.278920@z28g2000prd.googlegroups.com> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: jacob-sparre.dk 1181850947 8791 69.95.181.76 (14 Jun 2007 19:55:47 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Thu, 14 Jun 2007 19:55:47 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1807 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Xref: g2news1.google.com comp.lang.ada:16189 Date: 2007-06-14T14:58:11-05:00 List-Id: "Ludovic Brenta" wrote in message news:1181828462.112461.278920@z28g2000prd.googlegroups.com... > On Jun 14, 3:07 pm, a...@anon.org (anon) wrote: > > Trying to find a list of predefined packages that are common in all > > Ada version both commercial and free. Like "Ada.Text_IO", which > > should be in all version. > > > > But package "GNAT.IO" which is in the GNAT and GNU Ada version > > are limited to theses two version of Ada. > > > > If you could post a url address or maybe a dir listing of your. > > You can skip the GNU/GNAT I have that version. > > > > Thanks > > http://www.adaic.com/standards/05rm/html/RM-Q-1.html But beware: not all compilers support the annexes C-H, so packages defined in those may not be available. (An obvious example is Ada.Text_IO.Editing.) For the OP: if it isn't defined in the Ada standard, you can be sure that it isn't present in all Ada compilers. Packages defined by the different vendors tend to be very different. Thus the listing given above is about all that you can count on. Randy.