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,5ddcf55fabcfa088 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!z25g2000vbn.googlegroups.com!not-for-mail From: David Sauvage Newsgroups: comp.lang.ada Subject: Re: Issues with GPS on Xubuntu Date: Fri, 10 Sep 2010 12:18:51 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <4qSdnUDSdZ7C0BTRnZ2dnUVZ7rydnZ2d@giganews.com> <6ce518ad-74e7-4d81-91a8-3f6a36de7ef1@u13g2000vbo.googlegroups.com> NNTP-Posting-Host: 41.136.237.251 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1284146332 26726 127.0.0.1 (10 Sep 2010 19:18:52 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 10 Sep 2010 19:18:52 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: z25g2000vbn.googlegroups.com; posting-host=41.136.237.251; posting-account=VT4k8QoAAAB0zUvVwUYyaKE5TB63pAuh User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9.2.9) Gecko/20100825 Ubuntu/10.04 (lucid) Firefox/3.6.9,gzip(gfe) Xref: g2news1.google.com comp.lang.ada:13999 Date: 2010-09-10T12:18:51-07:00 List-Id: > I do get a warning on startup about missing libpng12.so - related ? In the case the libpng12.so library is missing --------------------------- On Debian & derivatives Linux distributions, you can easily know to what package a missing file belongs with apt-file. $ sudo aptitude install apt-file $ apt-file update $ apt-file search libpng12.so libpng12-0: /lib/libpng12.so.0 libpng12-0: /lib/libpng12.so.0.42.0 libpng12-dev: /usr/lib/libpng12.so lsb-build-desktop3: /usr/lib/lsb3/libpng12.so $ sudo aptitude install libpng12-dev libpng12-0 The latter command will install the libpng12-dev & libpng12-0 packages and thus the libpng12.so missing library. Then relaunch GPS (GNAT GPL) again to sort out if that was the problem. That _should_ solve your problem.