97c5d44520
Fixes: http://autobuild.buildroot.net/results/de2/de243c429c1e443efdbba82a860dbb7a03d5b746/ http://autobuild.buildroot.net/results/40c/40ce377893789883503deaa57912b87d2e0192e8/ http://autobuild.buildroot.net/results/134/13449cd77fbbd1c2b21d04b1fc866a086d915353/ http://autobuild.buildroot.net/results/e3f/e3fc33177eef955830a7be68e7b23503fd1d9ebe/ and others. Also add the missing 'select' statements for apr, expat and zlib to match the .mk file. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
29 lines
836 B
Makefile
29 lines
836 B
Makefile
################################################################################
|
|
#
|
|
# subversion
|
|
#
|
|
################################################################################
|
|
|
|
SUBVERSION_VERSION = 1.7.18
|
|
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))
|