d80f5c99fd
Fixes: CVE-2014-3580: mod_dav_svn DoS from invalid REPORT requests. CVE-2014-8108: mod_dav_svn DoS from use of invalid transaction names. Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
835 B
Makefile
28 lines
835 B
Makefile
################################################################################
|
|
#
|
|
# subversion
|
|
#
|
|
################################################################################
|
|
|
|
SUBVERSION_VERSION = 1.7.19
|
|
SUBVERSION_SITE = http://archive.apache.org/dist/subversion
|
|
SUBVERSION_LICENSE = Apache-2.0
|
|
SUBVERSION_LICENSE_FILES = LICENSE
|
|
SUBVERSION_DEPENDENCIES = host-pkgconf apr apr-util expat neon zlib sqlite
|
|
SUBVERSION_CONF_OPTS = \
|
|
--with-expat=$(STAGING_DIR)/usr/include:$(STAGING_DIR)/usr/lib: \
|
|
--with-apr=$(STAGING_DIR)/usr \
|
|
--with-apr-util=$(STAGING_DIR)/usr \
|
|
--with-zlib=$(STAGING_DIR)/usr \
|
|
--with-neon=$(STAGING_DIR)/usr \
|
|
--without-gssapi \
|
|
--without-serf \
|
|
--without-apxs \
|
|
--without-berkeyley-db \
|
|
--without-sasl \
|
|
--without-gnome-keyring \
|
|
--without-ssl \
|
|
--without-libmagic
|
|
|
|
$(eval $(autotools-package))
|