blob: dcfa7406d22f268d267e1ea41b641d54fd39627d [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001DESCRIPTION = "This is a userland SCTP stack supporting FreeBSD, Linux, Mac OS X and Windows."
2LICENSE = "BSD-3-Clause"
3LIC_FILES_CHKSUM = "file://LICENSE.md;md5=ffcf846341f3856d79a483eafa18e2a5"
4
Brad Bishop868407c2019-11-04 13:24:47 -05005SRCREV = "a10cd498d964508c0e6ec6bd2be9dd4afcbb4d86"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05006SRC_URI = "git://github.com/sctplab/usrsctp;protocol=https;branch=master \
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007 "
8
9S = "${WORKDIR}/git"
10
Andrew Geissler82c905d2020-04-13 13:39:40 -050011UPSTREAM_CHECK_COMMITS = "1"
12
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013inherit autotools pkgconfig
14
15DEPENDS += "openssl"
16
17CFLAGS += "-DSCTP_USE_OPENSSL_SHA1 -fPIC"
18LDFLAGS += "-lssl -lcrypto"
19
20PACKAGECONFIG ?= "disablewarnings inet inet6"
21PACKAGECONFIG[disablewarnings] = "--disable-warnings-as-errors,,"
22PACKAGECONFIG[inet] = "--enable-inet,--disable-inet,"
23PACKAGECONFIG[inet6] = "--enable-inet6,--disable-inet6,"
24
25EXTRA_OECONF += "--disable-debug"
Andrew Geissler615f2f12022-07-15 14:00:58 -050026
27CVE_VERSION = "0.9.3.0"