diff options
author | fuzzard <fuzzard@kodi.tv> | 2021-10-26 19:35:56 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2021-11-22 06:14:58 +1000 |
commit | 09ccfaea473cccd70852dab5f35a0fdd32aa2709 (patch) | |
tree | 2ec072162931edf04f4445c0839340559c4397dd /tools | |
parent | 6a0a7b43cf9149796622f68a4ae45872181c59dc (diff) |
[tools/depends][target] bump nghttp2 1.46.0
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/nghttp2/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tools/depends/target/nghttp2/Makefile b/tools/depends/target/nghttp2/Makefile index 95006ce3e1..24d1bd6ca6 100644 --- a/tools/depends/target/nghttp2/Makefile +++ b/tools/depends/target/nghttp2/Makefile @@ -3,11 +3,19 @@ DEPS= ../../Makefile.include Makefile # lib name, version LIBNAME=nghttp2 -VERSION=1.41.0 +VERSION=1.46.0 ARCHIVE=$(LIBNAME)-$(VERSION).tar.xz # configuration settings -CONFIGURE=./configure --prefix=$(PREFIX) --enable-lib-only --disable-shared +# no extra libs are required when using --enable-lib-only +CONFIGURE=./configure --prefix=$(PREFIX) --enable-lib-only --disable-shared \ + --without-jansson \ + --without-libevent-openssl \ + --without-libcares \ + --without-libev \ + --without-cunit \ + --without-openssl \ + --without-zlib LIBDYLIB=$(PLATFORM)/lib/.libs/lib$(LIBNAME).a |