diff options
author | Remi Gacogne <remi.gacogne@powerdns.com> | 2023-06-14 15:18:29 +0200 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2023-06-22 21:36:50 +0300 |
commit | 23a9cd519ca6f5a0e0a23518d4cb1470720f3438 (patch) | |
tree | 83260a124f189cefe8a24573e441529816a97e70 /libs/h2o | |
parent | be829c1486c5fca7dc1cd31813b12b946564f074 (diff) |
h2o: Build libh2o-evloop without yaml support
The only package using this library, dnsdist, does not require it
so let's save space and PSS memory.
Signed-off-by: Remi Gacogne <remi.gacogne@powerdns.com>
Diffstat (limited to 'libs/h2o')
-rw-r--r-- | libs/h2o/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/h2o/Makefile b/libs/h2o/Makefile index e7529d1e2..30241356f 100644 --- a/libs/h2o/Makefile +++ b/libs/h2o/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=h2o PKG_VERSION:=2.2.6 -PKG_RELEASE:=13 +PKG_RELEASE:=14 PKG_SOURCE_URL:=https://codeload.github.com/h2o/h2o/tar.gz/v${PKG_VERSION}? PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -26,7 +26,7 @@ define Package/libh2o-evloop CATEGORY:=Libraries TITLE:=H2O Library compiled with its own event loop URL:=https://h2o.examp1e.net/ - DEPENDS:=+libopenssl +zlib +libyaml + DEPENDS:=+libopenssl +zlib endef define Package/libh2o |