public inbox for [email protected]
help / color / mirror / Atom feedFYI for build farm owners: new oauth feature using libcurl
2+ messages / 2 participants
[nested] [flat]
* FYI for build farm owners: new oauth feature using libcurl
@ 2025-03-03 01:32 Thomas Munro <[email protected]>
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Munro @ 2025-03-03 01:32 UTC (permalink / raw)
To: [email protected]; +Cc: Jacob Champion <[email protected]>; Daniel Gustafsson <[email protected]>
Hi,
https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=b3f0be788
introduced a new oauth feature that uses libcurl and has tests. You
may want to consider installing libcurl and putting "oauth" into
PG_TEST_EXTRA for coverage. The systems that can use the new feature
are:
* those with timerfd and epoll: Linux and probably illumos
* those with kqueue: macOS and *BSD
Thanks,
^ permalink raw reply [nested|flat] 2+ messages in thread
* Re: FYI for build farm owners: new oauth feature using libcurl
@ 2025-03-04 14:15 Andrew Dunstan <[email protected]>
parent: Thomas Munro <[email protected]>
0 siblings, 0 replies; 2+ messages in thread
From: Andrew Dunstan @ 2025-03-04 14:15 UTC (permalink / raw)
To: Thomas Munro <[email protected]>; [email protected]; +Cc: Jacob Champion <[email protected]>; Daniel Gustafsson <[email protected]>
On 2025-03-02 Su 8:32 PM, Thomas Munro wrote:
> Hi,
>
> https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=b3f0be788
> introduced a new oauth feature that uses libcurl and has tests. You
> may want to consider installing libcurl and putting "oauth" into
> PG_TEST_EXTRA for coverage. The systems that can use the new feature
> are:
>
> * those with timerfd and epoll: Linux and probably illumos
> * those with kqueue: macOS and *BSD
>
You will also need to enable building with libcurl or none of that will
matter. That means adding "--with-libcurl" to the config_opts if you're
using configure/make, or "-Dlibcurl=enabled" to the meson_opts if you're
using meson.
Since this is branch-specific, you need to do it something like this at
the bottom of your config file:
if ($branch eq 'HEAD' || $branch ge 'REL_18')
{
push @{$conf{config_opts}}, '--with-libcurl';
push @{$conf{meson_opts}}, '-Dlibcurl=enabled';
}
cheers
andrew
--
Andrew Dunstan
EDB: https://www.enterprisedb.com
^ permalink raw reply [nested|flat] 2+ messages in thread
end of thread, other threads:[~2025-03-04 14:15 UTC | newest]
Thread overview: 2+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2025-03-03 01:32 FYI for build farm owners: new oauth feature using libcurl Thomas Munro <[email protected]>
2025-03-04 14:15 ` Andrew Dunstan <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox