diff options
author | peter <peter@FreeBSD.org> | 2015-10-12 09:53:55 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2015-10-12 09:53:55 +0000 |
commit | b6c77895261859228cc9fa0664e09fbea060e104 (patch) | |
tree | 64ec78831396b65233663ebce29e8f389059bb8d /usr.bin/svn/lib/libsvn_diff | |
parent | 67366adb20c44f7e7f9f3739419e8a0a82157433 (diff) | |
parent | c18b5d7f26f112be58bb1c4660799dea49f219ba (diff) | |
download | FreeBSD-src-b6c77895261859228cc9fa0664e09fbea060e104.zip FreeBSD-src-b6c77895261859228cc9fa0664e09fbea060e104.tar.gz |
Update from svn-1.8.14 to 1.9.2.
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
Diffstat (limited to 'usr.bin/svn/lib/libsvn_diff')
-rw-r--r-- | usr.bin/svn/lib/libsvn_diff/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/svn/lib/libsvn_diff/Makefile b/usr.bin/svn/lib/libsvn_diff/Makefile index 54ff3f2..f9d342c 100644 --- a/usr.bin/svn/lib/libsvn_diff/Makefile +++ b/usr.bin/svn/lib/libsvn_diff/Makefile @@ -7,8 +7,9 @@ INTERNALLIB= yes LIB= svn_diff -SRCS= 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 +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 \ |