From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] clamav: Disable llvm support. Date: Thu, 04 Jul 2019 15:44:05 +0200 Message-ID: <20190704134405.28913-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1371033414235548324==" List-Id: --===============1371033414235548324== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable When enabled, LLVM provides the capability to just-in-time compile ClamAV byt= ecode signatures. Without LLVM, ClamAV uses a built-in bytecode interpreter to execute bytecode= signatures. The mechanism is different, but the results are same and the performance over= all is comparable. At present only LLVM versions up to LLVM 3.6.2 are supported by ClamAV, and L= LVM 3.6.2 is old enough that newer distributions no longer provide it. Therefore, the ClamAV Devs rec= ommend using the --disable-llvm configure option. Fixes #11601. Signed-off-by: Stefan Schantl --- clamav/clamav.nm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clamav/clamav.nm b/clamav/clamav.nm index 9a550544e..9abe6c40e 100644 --- a/clamav/clamav.nm +++ b/clamav/clamav.nm @@ -5,7 +5,7 @@ =20 name =3D clamav version =3D 0.101.2 -release =3D 1 +release =3D 2 =20 groups =3D System Environment/Daemons url =3D http://www.clamav.net @@ -49,6 +49,7 @@ build --with-user=3Dclamupdate \ --with-group=3Dclamupdate \ --disable-rpath \ + --disable-llvm \ have_cv_ipv6=3Dyes =20 # User and group have to exist to compile the source code, --=20 2.21.0 --===============1371033414235548324==--