2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2007-01-14 06:38:00 +01:00
|
|
|
#
|
|
|
|
# libevent
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2017-02-03 21:29:53 +01:00
|
|
|
LIBEVENT_VERSION = 2.1.8-stable
|
2016-01-18 18:38:40 +01:00
|
|
|
LIBEVENT_SITE = https://github.com/libevent/libevent/releases/download/release-$(LIBEVENT_VERSION)
|
2009-08-11 17:35:23 +02:00
|
|
|
LIBEVENT_INSTALL_STAGING = YES
|
2014-06-25 00:10:30 +02:00
|
|
|
LIBEVENT_LICENSE = BSD-3c, OpenBSD
|
|
|
|
LIBEVENT_LICENSE_FILES = LICENSE
|
2015-01-07 15:43:31 +01:00
|
|
|
# For 0001-Disable-building-test-programs.patch
|
2014-10-19 19:21:01 +02:00
|
|
|
LIBEVENT_AUTORECONF = YES
|
2017-02-09 11:29:51 +01:00
|
|
|
LIBEVENT_CONF_OPTS = --disable-samples
|
2007-01-14 06:38:00 +01:00
|
|
|
|
2010-09-01 17:13:56 +02:00
|
|
|
define LIBEVENT_REMOVE_PYSCRIPT
|
|
|
|
rm $(TARGET_DIR)/usr/bin/event_rpcgen.py
|
|
|
|
endef
|
2009-09-19 21:31:57 +02:00
|
|
|
|
2010-09-01 17:13:56 +02:00
|
|
|
# libevent installs a python script to target - get rid of it if we
|
|
|
|
# don't have python support enabled
|
2009-09-19 21:31:57 +02:00
|
|
|
ifneq ($(BR2_PACKAGE_PYTHON),y)
|
2010-09-01 17:13:56 +02:00
|
|
|
LIBEVENT_POST_INSTALL_TARGET_HOOKS += LIBEVENT_REMOVE_PYSCRIPT
|
2009-09-19 21:31:57 +02:00
|
|
|
endif
|
2010-09-01 17:13:56 +02:00
|
|
|
|
2015-01-01 12:39:56 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
2017-02-09 11:29:52 +01:00
|
|
|
LIBEVENT_DEPENDENCIES += host-pkgconf openssl
|
2015-01-01 12:39:56 +01:00
|
|
|
LIBEVENT_CONF_OPTS += --enable-openssl
|
|
|
|
else
|
|
|
|
LIBEVENT_CONF_OPTS += --disable-openssl
|
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|
2013-12-02 14:00:10 +01:00
|
|
|
$(eval $(host-autotools-package))
|