diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-12-06 00:58:35 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-12 12:05:29 +0100 |
commit | 2abe487cd6b5fe2c56b8f450c43a0eff08036a8e (patch) | |
tree | 71a8437251a3f21226b394282331e4d42ff86b44 /package/clamav/0004-fix-static-build.patch | |
parent | 8ff54bb7a48dc6b0705a382b56159d86b2f1c7e5 (diff) | |
download | buildroot-2abe487cd6b5fe2c56b8f450c43a0eff08036a8e.tar.gz buildroot-2abe487cd6b5fe2c56b8f450c43a0eff08036a8e.zip |
package/clamav: bump to version 0.99
- removed autoreconf and two patches applied upstream
https://github.com/vrtadmin/clamav-devel/commit/b20eeffadb7675bf1a74e35b0aef80e26e1c0462
https://github.com/vrtadmin/clamav-devel/commit/785e4a90e0b5bf60f55eb0987300da2e1e12abbb
- removed clamuko configure option
- disabled fanotify support because UCLIBC_HAS_FTS is disabled
https://github.com/vrtadmin/clamav-devel/blob/master/README
"Support for on-access scanning using Clamuko/Dazuko has been replaced
with fanotify."
- added host-pkgconf dependency, used by configure
- added optional dependency to pcre
- added sha256 hash
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/clamav/0004-fix-static-build.patch')
-rw-r--r-- | package/clamav/0004-fix-static-build.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/clamav/0004-fix-static-build.patch b/package/clamav/0004-fix-static-build.patch deleted file mode 100644 index 9c7850a6e9..0000000000 --- a/package/clamav/0004-fix-static-build.patch +++ /dev/null @@ -1,21 +0,0 @@ -stats: fix static link - -The stats.c file does not use the dlopen() familly of functions, but -includes dlfcn.h, which is missing on uClibc when it is configured as -a static-only C library. - -so, simply do not include dlfcn.h. - -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> - -diff -durN clamav-0.98.5.orig/libclamav/stats.c clamav-0.98.5/libclamav/stats.c ---- clamav-0.98.5.orig/libclamav/stats.c 2014-11-13 23:30:43.000000000 +0100 -+++ clamav-0.98.5/libclamav/stats.c 2014-11-25 19:57:14.344291266 +0100 -@@ -41,7 +41,6 @@ - #include <sys/sysctl.h> - #endif - #endif --#include <dlfcn.h> - #else - #include <Windows.h> - #include <tchar.h> |