diff options
author | Stefan Saraev <stefan@saraev.ca> | 2016-07-07 20:22:14 +0300 |
---|---|---|
committer | Stefan Saraev <stefan@saraev.ca> | 2016-07-07 20:32:47 +0300 |
commit | 431114ecec382a9f15a7d11cc5c09a6c016c1c63 (patch) | |
tree | 7a989ada46474aa5180d7f28f924a4014e5db882 /tools | |
parent | 06d5304c217953d90f5bf6650e9aedaf6dfbdcdb (diff) |
[depends] build curl without librtmp support
kodi now uses ffmpeg's own rtmp implementation, and optionaly inputstream.rtmp
rtmp support was picked automaticlay by libcurl configure if librtmp header/libs
are present in sysroot. no point linking our libcurl against librtmp now
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/curl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/target/curl/Makefile b/tools/depends/target/curl/Makefile index e641a9d9e3..b47c7d7ab1 100644 --- a/tools/depends/target/curl/Makefile +++ b/tools/depends/target/curl/Makefile @@ -13,7 +13,7 @@ ARCHIVE=$(SOURCE).tar.bz2 # configuration settings CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \ ./configure --prefix=$(PREFIX) \ - --without-libssh2 --disable-ntlm-wb --enable-ipv6 + --without-libssh2 --disable-ntlm-wb --enable-ipv6 --without-librtmp LIBDYLIB=$(PLATFORM)/lib/.libs/lib$(LIBNAME).a |