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.3 required=5.0 tests=BAYES_00,STOX_REPLY_TYPE, STOX_REPLY_TYPE_WITHOUT_QUOTES,XPRIO autolearn=no autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!nzpost2.xs4all.net!news.kpn.nl!not-for-mail From: "ldries46" Newsgroups: comp.lang.ada Subject: Switching to GPS 2019 with GtkADA 2019 Date: Sun, 16 Jun 2019 15:53:39 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal Importance: Normal X-Newsreader: Microsoft Windows Live Mail 16.4.3528.331 X-MimeOLE: Produced By Microsoft MimeOLE V16.4.3528.331 Message-ID: <5d0649e7$0$1797$e4fe514c@news.kpn.nl> NNTP-Posting-Host: dd095b05.news.kpn.nl X-Trace: G=8zS06Em8,C=U2FsdGVkX1+MtFd+tTcTZk1/dUa5ELmV55yaJLK2JC5TpIdUyUPosdBmk42YRpOMHFN509BDJ8CW7iwyFjKAhF3EcSMnMVuNELgnDNiP6aQ= X-Complaints-To: abuse@kpn.nl Xref: reader01.eternal-september.org comp.lang.ada:56644 Date: 2019-06-16T15:53:39+02:00 List-Id: In the last version of the GNAT Programming Studio (2017 or 2018)I used in the gpr file line Library_Type : Build_Kind := external ("LIBRARY_TYPE"); The program was compiled without problems In version 2019 the file cannot be compiled anymore now I must use Library_Type : Build_Kind := "static"; to reach the same effect The Library that is responsible is the GtkADA library What name must I use for this library with "gtkada"; project Template is for Object_Dir use "./build"; for Exec_Dir use "."; type Build_Kind is ("static", "relocatable"); -- Library_Type : Build_Kind := external ("LIBRARY_TYPE"); -- Library_Type : Build_Kind := "static"; case Library_Type is