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
|
|
|
|
2014-10-19 19:21:01 +02:00
|
|
|
LIBEVENT_VERSION = release-2.0.21-stable
|
|
|
|
LIBEVENT_SITE = $(call github,libevent,libevent,$(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
|
2014-10-19 19:21:01 +02:00
|
|
|
# Straight from the repository, need to generate autotools files
|
|
|
|
LIBEVENT_AUTORECONF = YES
|
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)
|
|
|
|
LIBEVENT_DEPENDENCIES += openssl
|
|
|
|
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))
|