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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,6071f84396b8f5aa X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,UTF8 Received: by 10.68.21.229 with SMTP id y5mr2536336pbe.1.1318939673778; Tue, 18 Oct 2011 05:07:53 -0700 (PDT) Path: d5ni26871pbc.0!nntp.google.com!news1.google.com!goblin1!goblin.stu.neva.ru!feeder.news-service.com!aioe.org!.POSTED!not-for-mail From: =?utf-8?Q?Yannick_Duch=C3=AAne_=28Hibou57?= =?utf-8?Q?=29?= Newsgroups: comp.lang.ada Subject: Re: Writing PDF files Date: Tue, 18 Oct 2011 14:07:51 +0200 Organization: Ada @ Home Message-ID: References: NNTP-Posting-Host: KHj9AOPOidgt0YptnGtG5g.user.speranza.aioe.org Mime-Version: 1.0 X-Complaints-To: abuse@aioe.org User-Agent: Opera Mail/11.51 (Linux) X-Notice: Filtered by postfilter v. 0.8.2 Xref: news1.google.com comp.lang.ada:18560 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes Content-Transfer-Encoding: Quoted-Printable Date: 2011-10-18T14:07:51+02:00 List-Id: Le Tue, 18 Oct 2011 13:24:13 +0200, Simon Wright a = = =C3=A9crit: > I don't see those words in COPYING.LIB version 2 as distributed with > plplot (and I thought you don't hold with Wikipedia???!). Please, what means =E2=80=9Cto get hold with=E2=80=9D in that context ? > However, the plplot bindings have no generics, so may be OK. But I thi= nk > that for statically-linked proprietary executables using plplot you > would have to supply at least object code for your proprietary > application so that the user could relink with a newer version of > plplot. > > Sounds fraught with difficulty. I read it twice, and understood you are are required to allow reverse = engineering if ever you statically link to an LGPL stuff. So to feel at = = rest, the best is to use dynamic linking only. On Windows, that's easy, = = just put a DLL into the directory where the binary application reside = (application's directory is the first place where Windows application = loader will look to solve DLL dependencies). May seems more difficult on= = Unicies without installing a library system wide, except that may not be= = so much difficult: for Linux and derivatives, use a tiny utility which i= s = named =E2=80=9Cpatchelf=E2=80=9D, to write an rpath entry in your ELF ex= ecutable. I did = not check if relative paths are OK here of only absolute paths make sens= e, = but at least, this allow you to dynamically link an application to an = exact library, without system wide installation (if relative paths are n= ot = OK for an rpath, then do it from an installer). For MacOS, I can't tell,= I = don't own and don't have access to any. This PlPlot seems interesting (support a wide range of output among the = = most interesting ones), will have a look at it a later time. -- = =E2=80=9CSyntactic sugar causes cancer of the semi-colons.=E2=80=9D [Ep= igrams on = Programming =E2=80=94 Alan J. =E2=80=94 P. Yale University] =E2=80=9CStructured Programming supports the law of the excluded muddle.= =E2=80=9D [Idem] Java: Write once, Never revisit