diff options
author | dim <dim@FreeBSD.org> | 2016-05-14 10:18:27 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2016-05-14 10:18:27 +0000 |
commit | c0fce3206c07db73705b223c4cb4ef41d586fbb7 (patch) | |
tree | c7c6791fdb0ac3703a154f91c073e2d194dac0f9 /usr.bin/svn/lib/libsvn_diff | |
parent | e2e2d0eaebaad89d0ef90f345309428d02e0c8ab (diff) | |
download | FreeBSD-src-c0fce3206c07db73705b223c4cb4ef41d586fbb7.zip FreeBSD-src-c0fce3206c07db73705b223c4cb4ef41d586fbb7.tar.gz |
MFC r275385 (by bapt):
Sync the svn template with the one from ports
MFC r289180 (by peter):
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.
MFC r298845:
Update from subversion 1.9.2 to 1.9.4.
This contains only bug fixes, no new features. The repository format is
also unchanged from 1.9.2. Full list of changes between 1.9.4 and
earlier versions:
https://svn.apache.org/repos/asf/subversion/tags/1.9.4/CHANGES
Note that the two security issues fixed in 1.9.4 (CVE-2016-2167 and
CVE-2016-2168) do not affect the version of Subversion in the FreeBSD
base system, since neither SASL nor Apache modules are enabled.
MFC r298996:
Re-sync the FreeBSD-specific Subversion template with the one from
ports.
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 \ |