mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-22 11:17:19 +00:00
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
24 lines
500 B
Makefile
24 lines
500 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH: ${SVNDIR}/libsvn_diff
|
|
|
|
INTERNALLIB= yes
|
|
LIB= svn_diff
|
|
|
|
SRCS= binary_diff.c deprecated.c diff.c diff3.c diff4.c \
|
|
diff_file.c diff_memory.c diff_tree.c lcs.c parse-diff.c \
|
|
token.c util.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>
|
|
|