Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-10 Thread David Guyot
If you are looking for the name of the package providing the postgres library, it will probably change over the distros; under Debian, you're probably looking for libpq5 for the library itself, but I don't know the name of the package containing debugging symbols for this one. Depending on your de

Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-09 Thread Gadamsetty, Kiran
[mailto:michael.paqu...@gmail.com] Sent: Tuesday, November 08, 2016 9:21 AM To: Gadamsetty, Kiran Cc: pgsql-general@postgresql.org; Kumar, Sunil(RM engineering) Subject: Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows On Mon, Nov 7, 2016 at 2:28 PM, Gadamsetty, Kiran wro

Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-08 Thread Albe Laurenz
John R Pierce wrote: >> I am new to the product and in windows “postgres.lib” provides certain >> functions which we are >> using in windows for creating extensions. >> >> Now I am porting the project to Linux and there no straight library with >> this name in Linux >> binaries packages. >> >>

Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-07 Thread Michael Paquier
On Tue, Nov 8, 2016 at 1:29 PM, John R Pierce wrote: > I am not sure what this postgres.lib is, what are the functions you're using > ? It contains references to all the exposed functions of the backend on Windows. Using something like dumpbin /exports postgres.lib would show exactly that if I re

Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-07 Thread John R Pierce
On 11/7/2016 7:51 PM, Michael Paquier wrote: There is no need to go down to this level of details perhaps? You could just use the PGXS infrastructure to guess it for you. +1 I forgot to mention PGXS, that provides a portable method of building server-side extensions. See https://www.post

Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-07 Thread John R Pierce
On 11/6/2016 9:28 PM, Gadamsetty, Kiran wrote: I am new to the product and in windows “postgres.lib” provides certain functions which we are using in windows for creating extensions. Now I am porting the project to Linux and there no straight library with this name in Linux binaries packages

Re: [GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-07 Thread Michael Paquier
On Mon, Nov 7, 2016 at 2:28 PM, Gadamsetty, Kiran wrote: > I am new to the product and in windows “postgres.lib” provides certain > functions which we are using in windows for creating extensions. > > Now I am porting the project to Linux and there no straight library with > this name in Linux bin

[GENERAL] Linux equivalent library for "postgres.lib" from Windows

2016-11-07 Thread Gadamsetty, Kiran
Hi, I am new to the product and in windows "postgres.lib" provides certain functions which we are using in windows for creating extensions. Now I am porting the project to Linux and there no straight library with this name in Linux binaries packages. Can someone please advise the equivalent lib