diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-03-20 23:32:22 -0700 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2017-03-24 14:10:18 -0400 |
commit | b26bb1d79c546cd2cafdab2b1e7f79e6b3f126c3 (patch) | |
tree | fc879de40744ba4a9f7f5054799ef9139212bc95 /meta-networking/recipes-protocols | |
parent | 2b33f910134d01ee082f19202eea2aa16738b1de (diff) | |
download | meta-openembedded-b26bb1d79c546cd2cafdab2b1e7f79e6b3f126c3.tar.gz |
usrsctp: Enabled shared lib
webrtc gstreamer plugin fails to build otherwise since
libusrsctp.a is missing link on libss and so on
convert inet support into packageconfigs while here
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-protocols')
-rw-r--r-- | meta-networking/recipes-protocols/usrsctp/usrsctp_git.bb | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/meta-networking/recipes-protocols/usrsctp/usrsctp_git.bb b/meta-networking/recipes-protocols/usrsctp/usrsctp_git.bb index 99a261ec7..3ec746684 100644 --- a/meta-networking/recipes-protocols/usrsctp/usrsctp_git.bb +++ b/meta-networking/recipes-protocols/usrsctp/usrsctp_git.bb | |||
@@ -16,11 +16,9 @@ DEPENDS += "openssl" | |||
16 | CFLAGS += "-DSCTP_USE_OPENSSL_SHA1 -fPIC" | 16 | CFLAGS += "-DSCTP_USE_OPENSSL_SHA1 -fPIC" |
17 | LDFLAGS += "-lssl -lcrypto" | 17 | LDFLAGS += "-lssl -lcrypto" |
18 | 18 | ||
19 | PACKAGECONFIG ?= "disablewarnings" | 19 | PACKAGECONFIG ?= "disablewarnings inet inet6" |
20 | PACKAGECONFIG[disablewarnings] = "--disable-warnings-as-errors,," | 20 | PACKAGECONFIG[disablewarnings] = "--disable-warnings-as-errors,," |
21 | PACKAGECONFIG[inet] = "--enable-inet,--disable-inet," | ||
22 | PACKAGECONFIG[inet6] = "--enable-inet6,--disable-inet6," | ||
21 | 23 | ||
22 | EXTRA_OECONF += "--disable-inet \ | 24 | EXTRA_OECONF += "--disable-debug" |
23 | --disable-inet6 \ | ||
24 | --disable-shared \ | ||
25 | --disable-debug \ | ||
26 | " | ||