Re: [lazarus] deploy an application

2006-09-22 Thread Graeme Geldenhuys
On 21/09/06, Bogusław Brandys [EMAIL PROTECTED] wrote: Why this pixbuf is needed ? It's not a common package as I see.Any way to build Lazarus application for Linux which do not depend on pixbuf ? It is used to load images in gtk1 - if I remember correctly. To answer your second question,

[lazarus] deploy an application

2006-09-21 Thread Andrea Mauri
Hi to all, I build a little application that I would like to deploy by the web. I compiled both on Windows and Linux. For the Windows application I used InnoSetup, I deploy only the exe file. I need to deploy some libraries too? And for Linux? How can I know which libraries my application needs

Re: [lazarus] deploy an application

2006-09-21 Thread Albert Zeyer
Am Donnerstag, den 21.09.2006, 14:32 +0200 schrieb Andrea Mauri: Hi to all, I build a little application that I would like to deploy by the web. I compiled both on Windows and Linux. For the Windows application I used InnoSetup, I deploy only the exe file. I need to deploy some libraries

Re: [lazarus] deploy an application

2006-09-21 Thread Andrea Mauri
You can use 'ldd binary', it will show you a list of all linked libraries. It depends on the LCL-Interface, you use. If you choosed GTK1, then the GTK1 libs are needed. Most of the libs listed there are on mostly all Linux distributations out there. I compiled my app on Fedora and tested on

Re: [lazarus] deploy an application

2006-09-21 Thread Lord Satan
On Thu, 21 Sep 2006 17:22:06 +0200 Andrea Mauri [EMAIL PROTECTED] wrote: You can use 'ldd binary', it will show you a list of all linked libraries. It depends on the LCL-Interface, you use. If you choosed GTK1, then the GTK1 libs are needed. Most of the libs listed there are on mostly

Re: [lazarus] deploy an application

2006-09-21 Thread Bogusław Brandys
Lord Satan wrote: On Thu, 21 Sep 2006 17:22:06 +0200 Andrea Mauri [EMAIL PROTECTED] wrote: You can use 'ldd binary', it will show you a list of all linked libraries. It depends on the LCL-Interface, you use. If you choosed GTK1, then the GTK1 libs are needed. Most of the libs listed there are

Re: [lazarus] deploy an application

2006-09-21 Thread Lord Satan
Why this pixbuf is needed ? To load and handle images. It's not a common package as I see. But it is common as I see it, as it has AFAICR been on my system since RedHat 6.0. But AFAIK it is gtk-1.2 specific and not needed in gtk-2.x. Any way to build Lazarus application for Linux which do