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=-0.9 required=5.0 tests=BAYES_00,FROM_NUMERIC_TLD autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,f79349b3cdc0da96 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news2.google.com!news.germany.com!newsfeed.freenet.de!news-out2.kabelfoon.nl!newsfeed.kabelfoon.nl!bandi.nntp.kabelfoon.nl!demorgan.zen.co.uk!hamilton.zen.co.uk!zen.net.uk!dedekind.zen.co.uk!news-peer-lilac.gradwell.net!not-for-mail From: "Stuart" Newsgroups: comp.lang.ada References: <1153937625.891281.39820@p79g2000cwp.googlegroups.com> <1154018482.334890.316930@i42g2000cwa.googlegroups.com> Subject: Re: How do I acquire information about non-standard library Ada packages Date: Fri, 28 Jul 2006 09:07:58 +0100 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.2180 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Message-ID: <44c9c31d$1_1@glkas0286.greenlnk.net> X-Original-NNTP-Posting-Host: glkas0286.greenlnk.net NNTP-Posting-Host: 20.133.0.1 X-Trace: 1154074089 news.gradwell.net 634 dnews/20.133.0.1:50770 X-Complaints-To: news-abuse@gradwell.net Xref: g2news2.google.com comp.lang.ada:5983 Date: 2006-07-28T09:07:58+01:00 List-Id: "Chris L" wrote in message news:1154018482.334890.316930@i42g2000cwa.googlegroups.com... > > Steve wrote: >> Can you be more specific about what non-standard library packages? > > In general terms, I was wondering if there is a way to determine after > I log onto a brand new VAX system what non-standard libraries are > available? If you mean pre-defined libraries pre-built into the Ada library I would try: $ ACS DIRECTORY * Outside the ACS I would also have a poke around SYS$LIBRARY: $ DIRECTORY SYS$LIBRARY:*.ADA, SYS$LIBRARY:*ADA* You may find an Ada directory (ADALIB)! Quite often for the VAX you may be looking for a suitable STARLET library! Looking in the SYS$HELP and SYS$EXAMPLES directories may also turn up useful information. $ DIRECTORY SYS$HELP:*ADA* $ DIRECTORY SYS$EXAMPLES:*ADA* You could also poke around in the logical name tables $ SHOW LOGICAL ADA$* (or SHOW LOGICAL *ADA* if you are feeling inquisitive). Regards -- Stuart