Blame view

buildroot/buildroot-2016.08.1/package/xerces/xerces.mk 1.04 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
  ################################################################################
  #
  # xerces
  #
  ################################################################################
  
  XERCES_VERSION = 3.1.4
  XERCES_SOURCE = xerces-c-$(XERCES_VERSION).tar.xz
  XERCES_SITE = http://archive.apache.org/dist/xerces/c/3/sources
  XERCES_LICENSE = Apache-2.0
  XERCES_LICENSE_FILES = LICENSE
  XERCES_INSTALL_STAGING = YES
  XERCES_CONF_OPTS = \
  	--disable-threads \
  	--with-gnu-ld
  
  define XERCES_DISABLE_SAMPLES
  	$(SED) 's/ samples//' $(@D)/Makefile.in
  endef
  
  XERCES_POST_PATCH_HOOKS += XERCES_DISABLE_SAMPLES
  
  ifeq ($(BR2_PACKAGE_ICU),y)
  XERCES_CONF_OPTS += --with-icu=$(STAGING_DIR)/usr
  XERCES_DEPENDENCIES += icu
  else
  XERCES_CONF_OPTS += --without-icu
  endif
  
  ifeq ($(BR2_PACKAGE_LIBICONV),y)
  XERCES_CONF_ENV += LIBS=-liconv
  XERCES_DEPENDENCIES += libiconv
  endif
  
  ifeq ($(BR2_PACKAGE_LIBCURL),y)
  XERCES_CONF_OPTS += --enable-netaccessor-curl --with-curl=$(STAGING_DIR)/usr/lib
  XERCES_DEPENDENCIES += libcurl
  else
  XERCES_CONF_OPTS += --disable-network
  endif
  
  $(eval $(autotools-package))