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
|
|
|
|
2015-01-07 15:43:31 +01:00
|
|
|
LIBEVENT_VERSION_MAJOR = 2.0
|
|
|
|
LIBEVENT_VERSION = $(LIBEVENT_VERSION_MAJOR).22-stable
|
|
|
|
LIBEVENT_SITE = http://downloads.sourceforge.net/project/levent/libevent/libevent-$(LIBEVENT_VERSION_MAJOR)
|
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
|
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
|
2015-02-27 08:54:33 +01:00
|
|
|
# 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
|
2015-01-01 12:39:56 +01:00
|
|
|
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))
|