aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects
diff options
context:
space:
mode:
authorGravatar Micah Snyder <30635813+micahsnyder@users.noreply.github.com>2021-05-24 01:39:04 -0700
committerGravatar GitHub <noreply@github.com>2021-05-24 09:39:04 +0100
commitc2abaa0bd34f0d7dbfb5e2455de3f22f30d3e061 (patch)
treefad3ab89ece9f38f379ce7879bc6563ba6048d33 /projects
parent72098484b99edbc591e7dc6d6e1435321e113083 (diff)
[clamav] Fix build after libxml2 cmake change (#5820)
I updated ClamAV's Mussels recipe for libxml2 to the new 2.9.12 release and to use CMake instead of the old build system. It seems the new CMake build system installs the headers under <prefix>/include/libxml2 though. This commit accounts for the header path change.
Diffstat (limited to 'projects')
-rwxr-xr-xprojects/clamav/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/clamav/build.sh b/projects/clamav/build.sh
index 1f7e902e..826021bf 100755
--- a/projects/clamav/build.sh
+++ b/projects/clamav/build.sh
@@ -42,7 +42,7 @@ cmake ${SRC}/clamav-devel \
-DOPENSSL_CRYPTO_LIBRARY="$CLAMAV_DEPENDENCIES/lib/libcrypto.a" \
-DOPENSSL_SSL_LIBRARY="$CLAMAV_DEPENDENCIES/lib/libssl.a" \
-DZLIB_LIBRARY="$CLAMAV_DEPENDENCIES/lib/libssl.a" \
- -DLIBXML2_INCLUDE_DIR="$CLAMAV_DEPENDENCIES/include" \
+ -DLIBXML2_INCLUDE_DIR="$CLAMAV_DEPENDENCIES/include/libxml2" \
-DLIBXML2_LIBRARY="$CLAMAV_DEPENDENCIES/lib/libxml2.a" \
-DPCRE2_INCLUDE_DIR="$CLAMAV_DEPENDENCIES/include" \
-DPCRE2_LIBRARY="$CLAMAV_DEPENDENCIES/lib/libpcre2-8.a" \