274254cdae
- remove configure hooks to other os's - handle symlinks in cvsroot - configurable CVS local directory name - unlock patch - setxid patch (handle setuid CVS and drop privileges correctly) - when __SSP__ avoid alloca - admin commands in history - programmable admin group - always enforce admin group - protocol independent network handling (handle ipv6) - correct issue with wrong revision in resurrected files - centralize cvs password cleanup in memory - don't segv if we re-enter exit handlers - more sprintf -> snprintf - extra empty line in editor buffer - alias 't' with 'T' in logmsg.c for compatibility - alias config "LocalKeyword" with "tag" and "UserAdminOptions" with "AdminOptions" for compatibility. - disable Checking-prog and Update-prog for security - take account of our current umask when computing the mode of files.
23 lines
535 B
Makefile
23 lines
535 B
Makefile
# $NetBSD: Makefile.inc,v 1.1 2009/04/08 16:27:51 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # network client/server
|
|
|
|
WARNS?= 0
|
|
|
|
BINDIR?= /usr/bin
|
|
IDIST= ${NETBSDSRCDIR}/external/gpl2/xcvs/dist
|
|
|
|
.if !defined(SUBDIR)
|
|
CPPFLAGS+= -DSETXID_SUPPORT -DHAVE_CONFIG_H \
|
|
-I${.CURDIR}/../../include -I${IDIST}/lib \
|
|
-I${IDIST}/diff -I${IDIST}/src
|
|
|
|
DOBJDIR!=cd $(.CURDIR)/../../lib/libdiff && ${PRINTOBJDIR}
|
|
COBJDIR!=cd $(.CURDIR)/../../lib/libcvs && ${PRINTOBJDIR}
|
|
|
|
LIBDIFF= ${DOBJDIR}/libdiff.a
|
|
LIBCVS= ${COBJDIR}/libcvs.a
|
|
.endif
|