1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-16 10:05:22 +00:00

Check librsvg version before enabling

This commit is contained in:
Brenden Matthews 2024-02-29 09:28:44 -05:00
parent 1876a56d95
commit 9f9640ded8

View File

@ -25,6 +25,13 @@ trap cleanup EXIT
REPO_ROOT=$(readlink -f $(dirname $(dirname $0))) REPO_ROOT=$(readlink -f $(dirname $(dirname $0)))
OLD_CWD=$(readlink -f .) OLD_CWD=$(readlink -f .)
# check if we have a recent enough version of librsvg
if pkg-config --atleast-version 2.60 librsvg-2.0; then
ENABLE_RSVG=ON
else
ENABLE_RSVG=OFF
fi
# switch to build dir # switch to build dir
pushd "$BUILD_DIR" pushd "$BUILD_DIR"
@ -43,7 +50,7 @@ cmake -G Ninja \
-DBUILD_JOURNAL=ON \ -DBUILD_JOURNAL=ON \
-DBUILD_LUA_CAIRO=ON \ -DBUILD_LUA_CAIRO=ON \
-DBUILD_LUA_IMLIB2=ON \ -DBUILD_LUA_IMLIB2=ON \
-DBUILD_LUA_RSVG=ON \ -DBUILD_LUA_RSVG=${ENABLE_RSVG} \
-DBUILD_MYSQL=ON \ -DBUILD_MYSQL=ON \
-DBUILD_NVIDIA=ON \ -DBUILD_NVIDIA=ON \
-DBUILD_PULSEAUDIO=ON \ -DBUILD_PULSEAUDIO=ON \