Skip to content

Commit 4d6ca6e

Browse files
committed
Bump preferred libpq version on MacOS to 15
Fixes #441
1 parent 2b2081c commit 4d6ca6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ PKG_LIBS="-lpq"
1919
# Extra checks on MacOS for SSL support in libpq
2020
# command -v is probably fine: https://stackoverflow.com/a/677212/946850
2121
if [ "`uname`" = Darwin ] && [ "`command -v pkg-config`" ]; then
22-
if pkg-config --atleast-version=12 libpq; then
22+
if pkg-config --atleast-version=15 libpq; then
2323
case "`pkg-config --libs --static libpq`" in
2424
*crypto*)
2525
echo "Local libpq has SSL support"

0 commit comments

Comments
 (0)