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,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,12c54a0f5a27d882 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!goblin1!goblin.stu.neva.ru!eternal-september.org!.POSTED!not-for-mail From: Warren Newsgroups: comp.lang.ada Subject: Re: Autoconf & gnat Help Needed Date: Mon, 26 Apr 2010 15:25:53 +0000 (UTC) Organization: A noiseless patient Spider Message-ID: References: Injection-Date: Mon, 26 Apr 2010 15:25:53 +0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="9f8M0iN5t54V+4DF/iqO8g"; logging-data="22354"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19UItbJ5t1Qhi72FEddXbRo1ODXDss91aQ=" User-Agent: Xnews/5.04.25 X-Face: &6@]C2>ZS=NM|HE-^zWuryN#Z/2_.s9E|G&~DRi|sav9{E}XQJb*\_>=a5"q]\%A;5}LKP][1mA{gZ,Q!j Cancel-Lock: sha1:ZYwWNMnLrcC0dkQvFEMJ8lasgt0= Xref: g2news1.google.com comp.lang.ada:10210 Date: 2010-04-26T15:25:53+00:00 List-Id: Vadim Godunko expounded in news:ddd15bde-3294-416e-916c- 64c6c686b31f@b33g2000yqc.googlegroups.com: > By the way, configure equivalent, written in Ada, included in > Matreshka, it is still relatively simple, but good enough to detect > several important properties of target system like size of the > address, endianess, support of atomic operations by architecture and > support for MMX/SSE by Ada compiler. But I need more than that. There are platform issues with NaN, infinity constants and their handling. Also many differences in curses. Solaris adds grief for C types of attributes and the lack of/difference in certain attribute functions. I also need to know whether you can customize the colour palette in a given implementation of curses (and pdcurses). Include files vary by platform for some of the C routines, which will be called by the Ada code. Whether or not I have alloca() support is another important configuration item. Add to that release to release changes in 3rd party support like libgsl, libgmp and PostgreSQL and you'll find a strong need for extensive configuration control. So autocrap does control all that for me, along with a few hand-crafted platform tests where it falls short. Warren