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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,2bca44dca92606cc X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!s19g2000prg.googlegroups.com!not-for-mail From: John McCormick Newsgroups: comp.lang.ada Subject: Re: Problem with Jewl on GPS and AdaGide Date: Fri, 1 Feb 2008 13:05:45 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <6e11aefa-7fb1-4df0-9c71-611da6c84466@l1g2000hsa.googlegroups.com> NNTP-Posting-Host: 134.161.242.208 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1201899945 14064 127.0.0.1 (1 Feb 2008 21:05:45 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 1 Feb 2008 21:05:45 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: s19g2000prg.googlegroups.com; posting-host=134.161.242.208; posting-account=jVm7MAoAAABZ69ylB7L9PjZAVQg4j4fC User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:19684 Date: 2008-02-01T13:05:45-08:00 List-Id: On Jan 31, 9:25=A0am, Stoik wrote: > I am looking for someone to help me with JEWL in Windows environment > (Windows XP). I have installed academic version of GPS (2007-2) and > win32ada from the same source. Nevertheless, the linker is reporting: > ld.exe: cannot find -luser32 -lgdi32 -lcomdlg32 -lwinmm (from ld.exe). > What is the solution? Are there special switches or pragmas I should > use? Here is the solution that I was given to solve this problem: In file jewl-win32_interface.adb replace the one line pragma Linker_Options ("-luser32 -lgdi32 -lcomdlg32 -lwinmm"); with these three lines pragma Linker_Options ("-luser32"); pragma Linker_Options ("-lgdi32"); pragma Linker_Options ("-lcomdlg32"); pragma Linker_Options ("-lwinmm"); Build the JEWL library as described in the JEWL documentation. John