summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhuoyun Wei2015-10-15 13:02:40 +0800
committerZhuoyun Wei2015-10-15 13:05:25 +0800
commit70fa6535ca135bd81c5d1397f52887d2b8561f41 (patch)
tree916813ca1837f974614dc486f7b85c21981a36d6
parent548d06c2e786e4ccd86496df6efa02c1c13ee591 (diff)
downloadaur-70fa6535ca135bd81c5d1397f52887d2b8561f41.tar.gz
[nghttp2] Remove dependency for spdylay
Chrome v46 has been released. This version of Chrome does not have to bug relating to h2 proxy any longer. So there is no need to support legacy spdy protocol. Anyone wish to continue to use spdy, feel free to remove `--with-spdylay=no` line.
-rw-r--r--PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index d00e5a1a92e6..f81d767d6e7c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@ pkgdesc="HTTP/2 C Library"
arch=('i686' 'x86_64')
url="https://nghttp2.org/"
license=('MIT')
-depends=('openssl' 'libev' 'zlib' 'spdylay' 'libxml2' 'jansson' 'jemalloc')
+depends=('openssl' 'libev' 'zlib' 'libxml2' 'jansson' 'jemalloc')
source=("https://github.com/tatsuhiro-t/nghttp2/releases/download/${_pkgver}/nghttp2-${pkgver}.tar.gz")
backup=('etc/nghttpx/nghttpx.conf'
'etc/logrotate.d/nghttpx')
@@ -19,6 +19,7 @@ build() {
./configure \
--prefix=/usr \
+ --with-spdylay=no \
--disable-examples \
--disable-python-bindings
make