Merge pull request #10426 from owncloud/add_vips_mac_compile

[docs-only] Add libvips build dependencies for macOS
This commit is contained in:
Martin
2024-10-28 14:30:36 +01:00
committed by GitHub

View File

@@ -99,7 +99,13 @@ enabled at buildtime and has a couple of implications:
* Therefore, the libvips shared libraries need to be available at runtime in the same release that was used to build the ocis binary.
* When using the ocis docker images, the libvips shared libraries are included in the image and are correctly embedded.
Support of libvips is disabled by default. To enable it, make sure libvips and its buildtime dependencies are installed in your build environment.
Support of libvips is disabled by default. To enable it, make sure libvips and its buildtime dependencies are installed in your build environment. For macOS users, add the build time dependencies via:
```shell
brew install vips pkg-config
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig"
```
Then you just need to set the `ENABLE_VIPS` variable on the `make` command:
```shell