ajacoutot 08d7d2ba30 SECURITY update to uriparser-0.9.0:
- Out-of-bounds write in uriComposeQuery* and uriComposeQueryEx*
- Detect integer overflow in uriComposeQuery* and uriComposeQueryEx*
- Protect uriResetUri* against acting on NULL input
2018-10-28 09:13:30 +00:00

38 lines
814 B
Makefile

# $OpenBSD: Makefile,v 1.10 2018/10/28 09:13:30 ajacoutot Exp $
COMMENT = URI parsing library
DISTNAME = uriparser-0.9.0
WRKDIST = ${WRKDIR}/uriparser-${DISTNAME}
SHARED_LIBS += uriparser 2.0 # 1.23
CATEGORIES = www
HOMEPAGE = https://uriparser.github.io/
# BSD 3-clause
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c
MASTER_SITES = https://github.com/uriparser/uriparser/archive/
CONFIGURE_STYLE = gnu
CONFIGURE_ARGS = --disable-doc
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include"
# requires Google test (gtest)
CONFIGURE_ARGS += --disable-test
AUTOCONF_VERSION = 2.69
AUTOMAKE_VERSION = 1.15
BUILD_DEPENDS += ${MODGNU_AUTOCONF_DEPENDS} \
${MODGNU_AUTOMAKE_DEPENDS} \
devel/libtool
pre-configure:
cd ${WRKSRC} && env -i ${AUTOCONF_ENV} autoreconf -fi
.include <bsd.port.mk>