The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / zeromq / zeromq.mk
1 ################################################################################
2 #
3 # zeromq
4 #
5 ################################################################################
6
7 ZEROMQ_VERSION = 4.0.5
8 ZEROMQ_SITE = http://download.zeromq.org
9 ZEROMQ_INSTALL_STAGING = YES
10 ZEROMQ_DEPENDENCIES = util-linux
11 ZEROMQ_LICENSE = LGPLv3+ with exceptions
12 ZEROMQ_LICENSE_FILES = COPYING COPYING.LESSER
13 # For 0001-tests-disable-test_fork-if-fork-is-not-available.patch
14 # and 0002-acinclude.m4-make-kernel-specific-flags-cacheable.patch
15 ZEROMQ_AUTORECONF = YES
16
17 # Assume these flags are always available. It is true, at least for
18 # SOCK_CLOEXEC, since linux v2.6.27.
19 # Note: the flag TCP_KEEPALIVE is NOT available so we do not include it.
20 ZEROMQ_CONF_ENV = libzmq_cv_sock_cloexec=yes \
21         libzmq_cv_so_keepalive=yes \
22         libzmq_cv_tcp_keepcnt=yes \
23         libzmq_cv_tcp_keepidle=yes \
24         libzmq_cv_tcp_keepintvl=yes
25
26 # Only tools/curve_keygen.c needs this, but it doesn't hurt to pass it
27 # for the rest of the build as well (which automatically includes stdc++).
28 ifeq ($(BR2_STATIC_LIBS),y)
29 ZEROMQ_CONF_OPTS += LIBS=-lstdc++
30 endif
31
32 ifeq ($(BR2_PACKAGE_ZEROMQ_PGM),y)
33 ZEROMQ_DEPENDENCIES += host-pkgconf openpgm
34 ZEROMQ_CONF_OPTS += --with-system-pgm
35 endif
36
37 $(eval $(autotools-package))