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.4 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c2b3e0a81ca523a4 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-04-17 05:24:00 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.icl.net!newsfeed.fjserv.net!nnx.oleane.net!oleane!freenix!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: Duncan Sands Newsgroups: comp.lang.ada Subject: Re: Ada compiler Date: Sat, 17 Apr 2004 14:22:10 +0200 Organization: Cuivre, Argent, Or Message-ID: References: <2004415-144148-721184@foorum.com> NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: melchior.cuivre.fr.eu.org 1082204542 61686 212.85.156.195 (17 Apr 2004 12:22:22 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Sat, 17 Apr 2004 12:22:22 +0000 (UTC) To: Ludovic Brenta , comp.lang.ada@ada-france.org Return-Path: User-Agent: KMail/1.5.4 In-Reply-To: <2004415-144148-721184@foorum.com> Content-Disposition: inline X-Virus-Scanned: by amavisd-new-20030616-p7 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Gateway to the comp.lang.ada Usenet newsgroup" List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:7252 Date: 2004-04-17T14:22:10+02:00 > I have already applied one of your patches to gnat in Debian (see the > changelog if you don't believe me). But I would be very interested in > your other patches, if any. Here again, the bug database is a useful > tool for traceability. Hi Ludovic, as far as sockets go, I gave up on the 3.15p implementation and replaced it entirely with the gcc CVS version. To do this, it is enough to replace the files g-soccon.ads g-socket.adb g-socket.ads g-socthi.adb g-socthi.ads with the files of the same names from gcc CVS. Also, you will need to extract the entry socket.o from CVS libgnat.a, something like this: ar x libgnat.a socket.o and then stick the extracted socket.o into the 3.15p libgnat.a. If you want to build socket.o from source, I guess you will have to modify the 3.15p Makefiles a bit. Ciao, Duncan.