Blame view

buildroot/buildroot-2016.08.1/package/clamav/clamav.mk 1.89 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  ################################################################################
  #
  # clamav
  #
  ################################################################################
  
  CLAMAV_VERSION = 0.99.2
  CLAMAV_SITE = https://www.clamav.net/downloads/production
  CLAMAV_LICENSE = GPLv2
  CLAMAV_LICENSE_FILES = COPYING COPYING.bzip2 COPYING.file COPYING.getopt \
  	COPYING.LGPL COPYING.llvm COPYING.lzma COPYING.pcre COPYING.regex \
  	COPYING.unrar COPYING.zlib
  CLAMAV_DEPENDENCIES = \
  	host-pkgconf \
  	openssl \
  	zlib \
  	$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
  
  # mmap cannot be detected when cross-compiling, needed for mempool support
  CLAMAV_CONF_ENV = \
  	ac_cv_c_mmap_private=yes \
  	have_cv_ipv6=yes
  
  # UCLIBC_HAS_FTS is disabled, therefore disable fanotify (missing fts.h)
  CLAMAV_CONF_OPTS = \
  	--with-dbdir=/var/lib/clamav \
  	--with-openssl=$(STAGING_DIR)/usr \
  	--with-zlib=$(STAGING_DIR)/usr \
  	--disable-rpath \
  	--disable-clamav \
  	--disable-fanotify \
  	--disable-milter \
  	--disable-llvm \
  	--disable-clamdtop \
  	--enable-mempool
  
  ifeq ($(BR2_PACKAGE_BZIP2),y)
  CLAMAV_DEPENDENCIES += bzip2
  # autodetection gets confused if host has bzip2, so force it
  CLAMAV_CONF_ENV += \
  	ac_cv_libbz2_libs=-lbz2 \
  	ac_cv_libbz2_ltlibs=-lbz2
  else
  CLAMAV_CONF_OPTS += --disable-bzip2
  endif
  
  ifeq ($(BR2_PACKAGE_LIBXML2),y)
  CLAMAV_CONF_OPTS += --with-xml=$(STAGING_DIR)/usr
  CLAMAV_DEPENDENCIES += libxml2
  else
  CLAMAV_CONF_OPTS += --disable-xml
  endif
  
  ifeq ($(BR2_PACKAGE_LIBCURL),y)
  CLAMAV_CONF_OPTS += --with-libcurl=$(STAGING_DIR)/usr
  CLAMAV_DEPENDENCIES += libcurl
  else
  CLAMAV_CONF_OPTS += --without-libcurl
  endif
  
  ifeq ($(BR2_PACKAGE_LIBICONV),y)
  CLAMAV_CONF_OPTS += --with-iconv
  CLAMAV_DEPENDENCIES += libiconv
  else
  CLAMAV_CONF_OPTS += --without-iconv
  endif
  
  ifeq ($(BR2_PACKAGE_PCRE),y)
  CLAMAV_CONF_OPTS += --with-pcre=$(STAGING_DIR)/usr
  CLAMAV_DEPENDENCIES += pcre
  else
  CLAMAV_CONF_OPTS += --without-pcre
  endif
  
  $(eval $(autotools-package))