On Sat, Apr 19, 2025 at 5:04 AM Christoph Berg <myon@debian.org> wrote:
> How about this:
>
> No libpq OAuth flows are available. (Try installing the libpq-oauth package.)
Tweaked for capitalization/punctuation rules, and removing the first
"libpq" mention (which I don't think helps a user of, say, psql):
no OAuth flows are available (try installing the libpq-oauth package)
v8 also makes the following changes:
- Per ABI comment upthread, we are back to major-minor versioning for
the shared library (e.g. libpq-oauth-18-0.so). 0001 adds the macros
and makefile variables to make this easy, and 0002 is the bulk of the
change now.
- Since libpq-oauth.a is going to be discovered at compile time, not
runtime, I've removed the versioning from that filename. Static
clients need to match them anyway, so we don't need that additional
packaging headache.
- conn->errorMessage is now decoupled from oauth-curl.c. Separate
object file builds are made using the same technique as libpq.
Thanks,
--Jacob