From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-65-14.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00,FREEMAIL_FROM, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Received: by 2002:a05:622a:19a3:b0:403:394c:bf29 with SMTP id u35-20020a05622a19a300b00403394cbf29mr42264qtc.2.1688428710796; Mon, 03 Jul 2023 16:58:30 -0700 (PDT) X-Received: by 2002:a65:4504:0:b0:553:b8e9:95ac with SMTP id n4-20020a654504000000b00553b8e995acmr7968400pgq.2.1688428710244; Mon, 03 Jul 2023 16:58:30 -0700 (PDT) Path: eternal-september.org!news.eternal-september.org!news.mixmin.net!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 3 Jul 2023 16:58:29 -0700 (PDT) In-Reply-To: <87lefwwpce.fsf@nosuchdomain.example.com> Injection-Info: google-groups.googlegroups.com; posting-host=98.59.238.112; posting-account=oHOvdQoAAACYgyEBjgPNvKFOGxg8pNns NNTP-Posting-Host: 98.59.238.112 References: <5bd661f7-f077-47e4-a3c0-aef7d3b41059n@googlegroups.com> <016412bf-0247-466b-add9-8b5d41c6a9d7n@googlegroups.com> <6de97f96-fae6-4e13-9439-e8f550287835n@googlegroups.com> <2566ce87-a407-48a9-a805-afb4582a542bn@googlegroups.com> <7023751f-54a8-4392-b60f-611d5a8dfcb2n@googlegroups.com> <01bd59d9-c5cb-4336-b123-5289165c5de8n@googlegroups.com> <0d46efb3-210d-46d8-9e3c-4d3d938c1924n@googlegroups.com> <4ead2fde-6bc6-4bb3-97d0-4000b79f7d45n@googlegroups.com> <87lefwwpce.fsf@nosuchdomain.example.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: SDL Ada package fails to compile on Mac, gnat 13.1, missing "SDL2_ttf/SDL_ttf.h" From: Kenneth Wolcott Injection-Date: Mon, 03 Jul 2023 23:58:30 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Received-Bytes: 3465 Xref: news.eternal-september.org comp.lang.ada:65417 List-Id: On Monday, July 3, 2023 at 4:24:37=E2=80=AFPM UTC-7, Keith Thompson wrote: > Kenneth Wolcott writes:=20 > [...] > > After adding a semi-colon at the following line in sdlada.gpr=20 > >=20 > > for Default_Swiches ("Ada") use ("-gnat202", "-gnata"); > [...]=20 >=20 > Unless "-gnat202" requests the version of Ada that was current during=20 > the reign of Septimius Severus, you probably want to use "-gnat2022".=20 > (Options can be abbreviated, but "-gnat202" may become ambiguous if=20 > there's a new Ada standard before 2030.)=20 >=20 > Also "Default_Swiches" is mispelled.=20 >=20 > If the typos are the result of re-typing that line, I strongly suggest=20 > copy-and-pasting any code you post.=20 >=20 > --=20 > Keith Thompson Thank you, Keith :-) Fixed those two typos. Here's the current output from trying to build: make SDL_PLATFORM=3Dmacos_ports SDL_MODE=3Ddebug mkdir -p gen/src/ gprbuild -p -gnat2012 -XSDL_MODE=3Ddebug -XSDL_PLATFORM=3Dmacos_ports \ -Psdlada.gpr sdlada.gpr:26:09: a variable cannot be declared for the first time here sdlada.gpr:26:23: unknown variable "C_Switches" gprbuild: "sdlada.gpr" processing failed make: *** [lib/libadasdl.a] Error 5 Thanks, Ken