Detecting PostgreSQL client library

Started by Igor Korotover 1 year ago3 messagesgeneral
Jump to latest
#1Igor Korot
ikorot01@gmail.com

Hi, ALL,
Is there an explicit autotools macro that can tell
the presence of PostgreSQL client library?
And that can be used with "configure" script.

Or I should be using AC_CHECK_MODULE() one?

Thank you.

#2Pavel Stehule
pavel.stehule@gmail.com
In reply to: Igor Korot (#1)
Re: Detecting PostgreSQL client library

Hi

st 10. 7. 2024 v 18:07 odesílatel Igor Korot <ikorot01@gmail.com> napsal:

Hi, ALL,
Is there an explicit autotools macro that can tell
the presence of PostgreSQL client library?
And that can be used with "configure" script.

Or I should be using AC_CHECK_MODULE() one?

I use

I use
https://github.com/okbob/pspg/blob/master/tools/m4_ax_lib_postgresql.m4

Regards

Pavel

Show quoted text

Thank you.

#3Igor Korot
ikorot01@gmail.com
In reply to: Pavel Stehule (#2)
Re: Detecting PostgreSQL client library

On Wed, Jul 10, 2024 at 11:11 AM Pavel Stehule <pavel.stehule@gmail.com> wrote:

Hi

st 10. 7. 2024 v 18:07 odesílatel Igor Korot <ikorot01@gmail.com> napsal:

Hi, ALL,
Is there an explicit autotools macro that can tell
the presence of PostgreSQL client library?
And that can be used with "configure" script.

Or I should be using AC_CHECK_MODULE() one?

I use

I use https://github.com/okbob/pspg/blob/master/tools/m4_ax_lib_postgresql.m4

Thank you.

Show quoted text

Regards

Pavel

Thank you.