d03d666f7e
This release addresses two security issues: CVE-2014-3522: ra_serf improper validation of wildcards in SSL certs. CVE-2014-3528: credentials cached with svn may be sent to wrong server.
27 lines
758 B
Makefile
27 lines
758 B
Makefile
# $NetBSD: options.mk,v 1.14 2014/08/13 09:08:55 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.subversion
|
|
PKG_SUPPORTED_OPTIONS= serf sasl
|
|
PKG_SUGGESTED_OPTIONS+= serf
|
|
|
|
# Note that this file is included as part of several packages.
|
|
# Therefore this file defines options and includes some but not all of
|
|
# the typical fragments, leaving some to individual package files.
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= serf
|
|
|
|
.if !empty(PKG_OPTIONS:Mserf)
|
|
DAV_RA= serf
|
|
PLIST.serf= yes
|
|
BUILDLINK_ABI_DEPENDS.serf+= serf>=1.2.1
|
|
. include "../../www/serf/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msasl)
|
|
.include "../../security/cyrus-sasl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-sasl=${BUILDLINK_PREFIX.cyrus-sasl}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-sasl
|
|
.endif
|