blob: 38fb46fa4e6fed5e6e673b351d03dae1e97c26a3 [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
Patrick Williamsac13d5f2023-11-24 18:59:46 -06005SRCREV = "a0cbf4681474fab1e89d9e9e2d5c3694fce50359"
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"