Skip to content

Commit

Permalink
Merge pull request #465 from r-dbi/macos-libpq
Browse files Browse the repository at this point in the history
chore: Bump preferred libpq version on MacOS to 15
  • Loading branch information
aviator-app[bot] authored Apr 19, 2024
2 parents 2b2081c + 4d6ca6e commit ec9861b
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 ec9861b

Please sign in to comment.