From: Ryan Coe Date: Sat, 29 Dec 2018 01:39:09 +0000 (-0800) Subject: package/apache: enable optional support for nghttp2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a889534cb21118b9ef9031960708f723b17d66d;p=buildroot.git package/apache: enable optional support for nghttp2 Signed-off-by: Ryan Coe Signed-off-by: Thomas Petazzoni --- diff --git a/package/apache/apache.mk b/package/apache/apache.mk index 283c3cbd50..a95ac69f31 100644 --- a/package/apache/apache.mk +++ b/package/apache/apache.mk @@ -63,6 +63,15 @@ else APACHE_CONF_OPTS += --disable-lua endif +ifeq ($(BR2_PACKAGE_NGHTTP2),y) +APACHE_CONF_OPTS += \ + --enable-http2 \ + --with-nghttp2=$(STAGING_DIR)/usr +APACHE_DEPENDENCIES += nghttp2 +else +APACHE_CONF_OPTS += --disable-http2 +endif + ifeq ($(BR2_PACKAGE_OPENSSL),y) APACHE_DEPENDENCIES += openssl APACHE_CONF_OPTS += \