diff options
author | 2019-02-01 23:00:08 -0800 | |
---|---|---|
committer | 2019-03-24 18:44:58 -0700 | |
commit | 4cd3a39f22a2712bfa8fc657d09fe2c7765a4005 (patch) | |
tree | 535c29921e0026e15967cbc4b17e647b04ebb01a | |
parent | fafc38e4900b3131bc9a6ca538697b1c92925872 (diff) | |
download | meta-openembedded-contrib-stable/thud-next.tar.gz |
rtmpdump: Switch to using GNU TLS instead of openssl10stable/thud-next
Signed-off-by: Khem Raj <raj.khem@gmail.com>
[THUD: fixes usr/include/openssl/rc4.h:74:5: error: unknown type name 'RC4_INT']
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb index a72b0d651e..5f78be4f51 100644 --- a/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb +++ b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb @@ -5,7 +5,7 @@ HOMEPAGE = "http://rtmpdump.mplayerhq.hu/" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" -DEPENDS = "openssl10 zlib" +DEPENDS = "gnutls zlib" SRCREV = "fa8646daeb19dfd12c181f7d19de708d623704c0" SRC_URI = " \ @@ -18,5 +18,5 @@ inherit autotools-brokensep EXTRA_OEMAKE = " \ CC='${CC}' LD='${LD} ${STAGING_LIBDIR}' XCFLAGS='${CFLAGS}' XLDFLAGS='${LDFLAGS}' \ - SYS=posix INC=-I=/usr/include DESTDIR=${D} \ + SYS=posix INC=-I=/usr/include DESTDIR=${D} CRYPTO=GNUTLS \ prefix=${prefix} libdir=${libdir} incdir=${includedir}/librtmp bindir=${bindir} mandir=${mandir}" |