blob: 4c18c6aff992ec139175931940f4bb8cc2ebe363 [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 Williams03514f12024-04-05 07:04:11 -05005SRCREV = "848eca82f92273af9a79687a90343a2ebcf3481d"
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
Patrick Williams03514f12024-04-05 07:04:11 -050027CVE_VERSION = "0.9.5.0"