9daa23f19c
Changelog: Version 1.6.21 (04 Apr 2013, from /branches/1.6.x) http://svn.apache.org/repos/asf/subversion/tags/1.6.21 User-visible changes - Server-side bugfixes: * mod_dav_svn will omit some property values for activity urls (r1453780) * improve memory usage when committing properties in mod_dav_svn (r1443929) * fix mod_dav_svn runs pre-revprop-change twice (issue #3085) * fixed: post-revprop-change errors cancel commit (issue #2990) * improved logic in mod_dav_svn's implementation of lock. (r1455352) Developer-visible changes: - General: * fix a compatibility issue with g++ 4.7 (r1345740) This release addesses four security issues: CVE-2013-1845: mod_dav_svn excessive memory usage from property changes CVE-2013-1846: mod_dav_svn crashes on LOCK requests against activity URLs CVE-2013-1847: mod_dav_svn crashes on LOCK requests against non-existant URLs CVE-2013-1849: mod_dav_svn crashes on PROPFIND requests against activity URLs
48 lines
1.6 KiB
Text
48 lines
1.6 KiB
Text
# $NetBSD: Makefile.common,v 1.2 2013/04/13 13:02:02 ryoon Exp $
|
|
# used by devel/subversion-base16/Makefile
|
|
# used by devel/subversion16/Makefile
|
|
|
|
DISTNAME= subversion-${SVNVER}
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= http://subversion.tigris.org/downloads/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://subversion.apache.org/
|
|
LICENSE= apache-1.1
|
|
|
|
# People who might update Makefile.version may not be set up to test
|
|
# ruby/python/perl and java bindings, and testing ap2-subversion16 is
|
|
# awkward. If you object to updates without these tests, please
|
|
# volunteer to test patches and your email address can be recorded
|
|
# here. (Absent volunteers, breakage of language bindings will not be
|
|
# considered a terrible occurrence.)
|
|
MAINTAINER_TEST_VOLUNTEERS=
|
|
|
|
.include "../../devel/subversion16/Makefile.version"
|
|
|
|
SVNEXAMPLES= ${PREFIX}/share/examples/subversion16
|
|
SVNDOC= ${PREFIX}/share/doc/subversion16
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/subversion16/distinfo
|
|
FILESDIR= ${.CURDIR}/../../devel/subversion16/files
|
|
PATCHDIR= ${.CURDIR}/../../devel/subversion16/patches
|
|
|
|
USE_LIBTOOL= YES
|
|
USE_PKGLOCALEDIR= YES
|
|
GNU_CONFIGURE= YES
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "../../devel/subversion16-base/options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mserf)
|
|
CONFIGURE_ARGS+= --with-serf=${BUILDLINK_PREFIX.serf} --without-neon
|
|
.else
|
|
CONFIGURE_ARGS+= --with-neon=${BUILDLINK_PREFIX.neon}
|
|
.endif
|
|
|
|
# workaround: does not install info file, but does create directory
|
|
CONFIGURE_ARGS+= --infodir=${PREFIX}/${PKGINFODIR}
|
|
|
|
BUILDLINK_API_DEPENDS.subversion16-base+= subversion16-base>=${SVNVER}
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|