af80ed6add
Formal release notes are available: https://subversion.apache.org/docs/release-notes/1.9.html Of particular note, the client checkout format has *not* changed so upgrades should *not* be required. When reading a repository (file:// or running as a local server), an improved fsfs version 7 is available with significant performance improvements. An optional upgrade is possible to use the new features. Without the upgrade, this is fully read/write compatible with the version 6 fsfs as in svn-1.8. Relnotes: yes
25 lines
627 B
Makefile
25 lines
627 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH: ${SVNDIR}/libsvn_fs_x
|
|
|
|
INTERNALLIB= yes
|
|
LIB= svn_fs_x
|
|
|
|
SRCS= cached_data.c caching.c changes.c dag.c fs.c fs_id.c fs_x.c \
|
|
hotcopy.c id.c index.c lock.c low_level.c noderevs.c pack.c \
|
|
recovery.c rep-cache.c reps.c rev_file.c revprops.c \
|
|
string_table.c temp_serializer.c transaction.c tree.c \
|
|
util.c verify.c
|
|
|
|
CFLAGS+= -I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/../.. \
|
|
-I${.CURDIR}/../libapr \
|
|
-I${APR}/include/arch/unix \
|
|
-I${APR}/include \
|
|
-I${.CURDIR}/../libapr_util \
|
|
-I${APRU}/include/private \
|
|
-I${APRU}/include
|
|
|
|
.include <bsd.lib.mk>
|