9bef06906d
Upstream URL has changed on Sourceforge: >>> libevent 2.0.22-stable Downloading --2016-01-17 23:06:31-- http://downloads.sourceforge.net/project/levent/libevent/libevent-2.0/libevent-2.0.22-stable.tar.gz Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.34.181.59 Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.34.181.59|:80... connected. HTTP request sent, awaiting response... 404 Not Found 2016-01-17 23:06:31 ERROR 404: Not Found. Additionally the project moved to github: http://sourceforge.net/projects/levent/ "As of 2015-10-07, this project may now be found at https://github.com/libevent/libevent." This patch points Config.in to the new upstream URL and fixes the broken download URL by using github.com. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# libevent
|
|
#
|
|
################################################################################
|
|
|
|
LIBEVENT_VERSION = 2.0.22-stable
|
|
LIBEVENT_SITE = https://github.com/libevent/libevent/releases/download/release-$(LIBEVENT_VERSION)
|
|
LIBEVENT_INSTALL_STAGING = YES
|
|
LIBEVENT_LICENSE = BSD-3c, OpenBSD
|
|
LIBEVENT_LICENSE_FILES = LICENSE
|
|
# For 0001-Disable-building-test-programs.patch
|
|
LIBEVENT_AUTORECONF = YES
|
|
|
|
define LIBEVENT_REMOVE_PYSCRIPT
|
|
rm $(TARGET_DIR)/usr/bin/event_rpcgen.py
|
|
endef
|
|
|
|
# libevent installs a python script to target - get rid of it if we
|
|
# don't have python support enabled
|
|
ifneq ($(BR2_PACKAGE_PYTHON),y)
|
|
LIBEVENT_POST_INSTALL_TARGET_HOOKS += LIBEVENT_REMOVE_PYSCRIPT
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LIBEVENT_DEPENDENCIES += openssl
|
|
LIBEVENT_CONF_OPTS += --enable-openssl
|
|
# 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
|
|
else
|
|
LIBEVENT_CONF_OPTS += --disable-openssl
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|