b6c7789526
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
28 lines
850 B
Makefile
28 lines
850 B
Makefile
# $FreeBSD$
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.PATH: ${SVNDIR}/libsvn_client
|
|
|
|
INTERNALLIB= yes
|
|
LIB= svn_client
|
|
|
|
SRCS= add.c blame.c cat.c changelist.c checkout.c cleanup.c \
|
|
cmdline.c commit.c commit_util.c compat_providers.c copy.c \
|
|
copy_foreign.c ctx.c delete.c deprecated.c diff.c \
|
|
diff_local.c diff_summarize.c export.c externals.c import.c \
|
|
info.c iprops.c list.c locking_commands.c log.c merge.c \
|
|
mergeinfo.c mtcc.c patch.c log.c prop_commands.c \
|
|
ra.c relocate.c repos_diff.c resolved.c revert.c revisions.c \
|
|
status.c switch.c update.c upgrade.c url.c util.c version.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>
|