Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

postgis: declare indirect deps with linkage #178765

Merged
merged 1 commit into from
Jul 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Formula/p/postgis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,24 @@ class Postgis < Formula

depends_on "gpp" => :build
depends_on "pkg-config" => :build

depends_on "gdal" # for GeoJSON and raster handling
depends_on "geos"
depends_on "icu4c"
depends_on "json-c" # for GeoJSON and raster handling
depends_on "libxml2"
depends_on "pcre2"
depends_on "postgresql@14"
depends_on "proj"
depends_on "protobuf-c" # for MVT (map vector tiles) support
depends_on "sfcgal" # for advanced 2D/3D functions

uses_from_macos "llvm"

on_linux do
depends_on "libpq"
end

fails_with gcc: "5" # C++17

def postgresql
Expand Down
Loading