Blame view

buildroot/buildroot-2016.08.1/package/libevent/libevent.mk 1.14 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
  ################################################################################
  #
  # libevent
  #
  ################################################################################
  
  LIBEVENT_VERSION = 2.0.22-stable
  LIBEVENT_SITE = https://github.com/libevent/libevent/releases/download/release-$(LIBEVENT_VERSION)
  LIBEVENT_INSTALL_STAGING = YES
  LIBEVENT_LICENSE = BSD-3c, OpenBSD
  LIBEVENT_LICENSE_FILES = LICENSE
  # For 0001-Disable-building-test-programs.patch
  LIBEVENT_AUTORECONF = YES
  
  define LIBEVENT_REMOVE_PYSCRIPT
  	rm $(TARGET_DIR)/usr/bin/event_rpcgen.py
  endef
  
  # libevent installs a python script to target - get rid of it if we
  # don't have python support enabled
  ifneq ($(BR2_PACKAGE_PYTHON),y)
  LIBEVENT_POST_INSTALL_TARGET_HOOKS += LIBEVENT_REMOVE_PYSCRIPT
  endif
  
  ifeq ($(BR2_PACKAGE_OPENSSL),y)
  LIBEVENT_DEPENDENCIES += openssl
  LIBEVENT_CONF_OPTS += --enable-openssl
  # openssl needs zlib but configure forgets to link against it causing
  # openssl detection to fail
  ifeq ($(BR2_STATIC_LIBS),y)
  LIBEVENT_CONF_ENV += OPENSSL_LIBADD='-lz'
  endif
  else
  LIBEVENT_CONF_OPTS += --disable-openssl
  endif
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))