Fedora rawhide requires mapnik-static (now that it provides Mapnik v4.0.0) (#457)

It contains libraries now referenced by `pkg-config` and `mod_tile` uses only `pkg-config` for `Mapnik >= v4.0.0`.
This commit is contained in:
Hummeltech
2024-07-09 21:59:21 -07:00
committed by GitHub
parent 9742572c85
commit 41b882ed9c
3 changed files with 4 additions and 1 deletions

View File

@ -43,6 +43,7 @@ inputs:
libmemcached-devel
librados-devel
mapnik-devel
mapnik-static
sqlite-devel
fedora-test-dependencies:
default: >-

View File

@ -23,6 +23,7 @@ RUN --mount=id=fedora:${fedora_version}-/var/cache/dnf,target=/var/cache/dnf,typ
libmemcached-devel \
librados-devel \
mapnik-devel \
mapnik-static \
procps
## Build, Test & Install `mod_tile`

View File

@ -28,7 +28,8 @@ sudo dnf --assumeyes --setopt=install_weak_deps=False install \
libcurl-devel \
libmemcached-devel \
librados-devel \
mapnik-devel
mapnik-devel \
mapnik-static
# Download, Build, Test & Install `mod_tile`
export CMAKE_BUILD_PARALLEL_LEVEL=$(nproc)