7695a02244
Fixes the following security issues: CVE-2018-11782: Remotely triggerable DoS vulnerability in svnserve 'get-deleted-rev' https://subversion.apache.org/security/CVE-2018-11782-advisory.txt CVE-2019-0203: Remote unauthenticated denial-of-service in Subversion svnserve https://subversion.apache.org/security/CVE-2019-0203-advisory.txt Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
35 lines
944 B
Makefile
35 lines
944 B
Makefile
################################################################################
|
|
#
|
|
# subversion
|
|
#
|
|
################################################################################
|
|
|
|
SUBVERSION_VERSION = 1.9.12
|
|
SUBVERSION_SOURCE = subversion-$(SUBVERSION_VERSION).tar.bz2
|
|
SUBVERSION_SITE = http://mirror.catn.com/pub/apache/subversion
|
|
SUBVERSION_LICENSE = Apache-2.0
|
|
SUBVERSION_LICENSE_FILES = LICENSE
|
|
SUBVERSION_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
apr \
|
|
apr-util \
|
|
expat \
|
|
zlib \
|
|
sqlite \
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
SUBVERSION_AUTORECONF = YES
|
|
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 \
|
|
--without-serf \
|
|
--without-apxs \
|
|
--without-berkeley-db \
|
|
--without-sasl \
|
|
--without-gnome-keyring \
|
|
--without-libmagic
|
|
SUBVERSION_CONF_ENV = LIBS=$(TARGET_NLS_LIBS)
|
|
|
|
$(eval $(autotools-package))
|