Skip to content

Commit

Permalink
Bump preferred libpq version on MacOS to 15
Browse files Browse the repository at this point in the history
Fixes #441
  • Loading branch information
jeroen committed Apr 19, 2024
1 parent 2b2081c commit 4d6ca6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ PKG_LIBS="-lpq"
# Extra checks on MacOS for SSL support in libpq
# command -v is probably fine: https://stackoverflow.com/a/677212/946850
if [ "`uname`" = Darwin ] && [ "`command -v pkg-config`" ]; then
if pkg-config --atleast-version=12 libpq; then
if pkg-config --atleast-version=15 libpq; then
case "`pkg-config --libs --static libpq`" in
*crypto*)
echo "Local libpq has SSL support"
Expand Down

0 comments on commit 4d6ca6e

Please sign in to comment.