mirror of
https://git.yoctoproject.org/poky
synced 2026-02-27 03:49:41 +01:00
Apache Subversion 1.0.0 through 1.7.x before 1.7.17 and 1.8.x before 1.8.10 uses an MD5 hash of the URL and authentication realm to store cached credentials, which makes it easier for remote servers to obtain the credentials via a crafted authentication realm. http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-3528 (From OE-Core rev: e0dc0432b13f38d16f642bdadf8ebc78b7a74806) Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
1.6 KiB
BlitzBasic
49 lines
1.6 KiB
BlitzBasic
SUMMARY = "Subversion (svn) version control system client"
|
|
SECTION = "console/network"
|
|
DEPENDS = "apr-util neon sqlite3"
|
|
RDEPENDS_${PN} = "neon"
|
|
LICENSE = "Apache-2"
|
|
HOMEPAGE = "http://subversion.tigris.org"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
PR = "r3"
|
|
|
|
SRC_URI = "http://subversion.tigris.org/downloads/${BPN}-${PV}.tar.bz2 \
|
|
file://disable-revision-install.patch \
|
|
file://libtool2.patch \
|
|
file://fix-install-depends.patch \
|
|
file://subversion-CVE-2013-1849.patch \
|
|
file://subversion-CVE-2013-4505.patch \
|
|
file://subversion-CVE-2013-1845.patch \
|
|
file://subversion-CVE-2013-1847-CVE-2013-1846.patch \
|
|
file://subversion-CVE-2013-4277.patch \
|
|
file://subversion-CVE-2014-3522.patch \
|
|
file://subversion-CVE-2014-3528.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "113fca1d9e4aa389d7dc2b210010fa69"
|
|
SRC_URI[sha256sum] = "b2919d603a5f3c19f42e3265c4b930e2376c43b3969b90ef9c42b2f72d5aaa45"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2a69fef414e2cb907b4544298569300b"
|
|
|
|
PACKAGECONFIG[sasl] = "--with-sasl,--without-sasl,cyrus-sasl"
|
|
|
|
EXTRA_OECONF = " \
|
|
--without-berkeley-db --without-apxs --without-apache \
|
|
--without-swig --with-apr=${STAGING_BINDIR_CROSS} \
|
|
--with-apr-util=${STAGING_BINDIR_CROSS} \
|
|
ac_cv_path_RUBY=none"
|
|
|
|
inherit autotools
|
|
|
|
export LDFLAGS += " -L${STAGING_LIBDIR} "
|
|
|
|
acpaths = "-I build/ -I build/ac-macros/"
|
|
|
|
do_configure_prepend () {
|
|
rm -f ${S}/libtool
|
|
rm -f ${S}/build/libtool.m4
|
|
sed -i -e 's:with_sasl="/usr/local":with_sasl="${STAGING_DIR}":' ${S}/build/ac-macros/sasl.m4
|
|
}
|