Blame view

buildroot/buildroot-2016.08.1/package/zeromq/zeromq.mk 1.64 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
  ################################################################################
  #
  # zeromq
  #
  ################################################################################
  
  ZEROMQ_VERSION = 4.1.5
  ZEROMQ_SITE = https://github.com/zeromq/zeromq4-1/releases/download/v$(ZEROMQ_VERSION)
  ZEROMQ_INSTALL_STAGING = YES
  ZEROMQ_DEPENDENCIES = util-linux
  ZEROMQ_CONF_OPTS = --without-documentation
  ZEROMQ_LICENSE = LGPLv3+ with exceptions
  ZEROMQ_LICENSE_FILES = COPYING COPYING.LESSER
  # For 0001-acinclude.m4-make-kernel-specific-flags-cacheable.patch
  ZEROMQ_AUTORECONF = YES
  
  # Assume these flags are always available. It is true, at least for
  # SOCK_CLOEXEC, since linux v2.6.27.
  # Note: the flag TCP_KEEPALIVE is NOT available so we do not include it.
  ZEROMQ_CONF_ENV = libzmq_cv_sock_cloexec=yes \
  	libzmq_cv_so_keepalive=yes \
  	libzmq_cv_tcp_keepcnt=yes \
  	libzmq_cv_tcp_keepidle=yes \
  	libzmq_cv_tcp_keepintvl=yes
  
  # Only tools/curve_keygen.c needs this, but it doesn't hurt to pass it
  # for the rest of the build as well (which automatically includes stdc++).
  ifeq ($(BR2_STATIC_LIBS),y)
  ZEROMQ_CONF_OPTS += LIBS=-lstdc++
  endif
  
  ifeq ($(BR2_PACKAGE_ZEROMQ_NORM),y)
  ZEROMQ_CONF_OPTS += --with-norm
  ZEROMQ_DEPENDENCIES += norm
  else
  ZEROMQ_CONF_OPTS += --without-norm
  endif
  
  ifeq ($(BR2_PACKAGE_ZEROMQ_PGM),y)
  ZEROMQ_DEPENDENCIES += host-pkgconf openpgm
  ZEROMQ_CONF_OPTS += --with-pgm
  else
  ZEROMQ_CONF_OPTS += --without-pgm
  endif
  
  # ZeroMQ uses libsodium if it's available.
  ifeq ($(BR2_PACKAGE_LIBSODIUM),y)
  ZEROMQ_DEPENDENCIES += libsodium
  ZEROMQ_CONF_OPTS += --with-libsodium="$(STAGING_DIR)/usr"
  else
  ZEROMQ_CONF_OPTS += --without-libsodium
  endif
  
  $(eval $(autotools-package))