peterstace / simplefeatures

Simple Features is a pure Go Implementation of the OpenGIS Simple Feature Access Specification
MIT License
125 stars 19 forks source link

Allow the use of `pkg-config` to be opt-out #602

Closed peterstace closed 3 months ago

peterstace commented 3 months ago

Description

Some systems don't have pkg-config, or have pkg-config that's set up incorrectly. These systems couldn't easily use the v0.47.1 tag, because that tag introduces a hard dependency on pkg-config being used to configure GEOS.

This changeset allows pkg-config to be opted out of, by using the sfnopkgconfig build tag. The behaviour when using that build tag is effectively the same as pre-v0.47.1.

Check List

Have you:

Related Issue