php5-pecl-http: disable libevent support (fixes #13742)

When libevent2 was found in staging directory the configure scripts
automatically adds a dependency to it. This breaks the build as
mentioned in #13742.
To keep the footprint on the target small let's explicit disable
it rather than adding an dependency on libevent2.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@37379 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mhei 2013-07-17 16:15:25 +00:00
parent fa75d29d8e
commit e78f6f9e12

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2012 OpenWrt.org # Copyright (C) 2012-2013 OpenWrt.org
# #
# This is free software, licensed under the GNU General Public License v2. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -11,7 +11,7 @@ PECL_NAME:=pecl_http
PECL_LONGNAME:=Extended HTTP Support PECL_LONGNAME:=Extended HTTP Support
PKG_VERSION:=1.7.4 PKG_VERSION:=1.7.4
PKG_RELEASE:=1 PKG_RELEASE:=2
PKG_MD5SUM:=288bae57b89d8de4bdd7d7dc5954cf8c PKG_MD5SUM:=288bae57b89d8de4bdd7d7dc5954cf8c
PKG_NAME:=php5-pecl-http PKG_NAME:=php5-pecl-http
@ -29,6 +29,7 @@ CONFIGURE_ARGS+= \
--enable-http=shared \ --enable-http=shared \
--without-http-shared-deps \ --without-http-shared-deps \
--with-http-curl-requests="$(STAGING_DIR)/usr" \ --with-http-curl-requests="$(STAGING_DIR)/usr" \
--without-http-curl-libevent \
$(eval $(call PECLPackage,http,$(PECL_LONGNAME),+libcurl +librt +php5-mod-iconv +php5-mod-session)) $(eval $(call PECLPackage,http,$(PECL_LONGNAME),+libcurl +librt +php5-mod-iconv +php5-mod-session))
$(eval $(call BuildPackage,$(PKG_NAME))) $(eval $(call BuildPackage,$(PKG_NAME)))