# $NetBSD: Makefile,v 1.1.1.1 2003/01/26 00:40:40 wiz Exp $ .include "${.CURDIR}/../Makefile.inc" DIST= ${IDIST}/src .PATH: ${DIST} ${IDIST}/doc ${IDIST}/man PROG= diff SRCS= analyze.c context.c diff.c dir.c ed.c ifdef.c io.c \ normal.c side.c util.c version.c DPADD+= ${LIBDIFFUTILS} LDADD+= ${LIBDIFFUTILS} INFOFLAGS= -I${IDIST}/doc TEXINFO= diff.texi .include .include '>netbsd
NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-05make the 2nd argument to __memmove_chk() constmrg
2017-07-03Remove workaround for ancient HTML generation code.wiz
2015-12-03It is wrong to -I/usr/include/sspchristos
2015-05-13void * is bad for computation, so cast to const char * first.joerg
2015-05-09add overlapping pointer checkschristos
2014-09-17Provide explicit prototypes in case HAVE_SSP=no.joerg
2014-04-06add __stpncpy_chkchristos
2014-04-06fix incorrect bounds checkchristos
2014-04-06fix the limit check.christos
2014-04-06fix off by one in stpcpy_chk.christos
christos
2013-11-07we don't support stpncpy until gcc doeschristos
2013-11-06handle old gccchristos
2013-11-06add stp{,n}cpychristos
2013-11-06fix doc for strcpy, strcatchristos
add stp{,n}cpy
2013-11-06simplifychristos
2013-10-04avoid linker warning for compat symbols that are used internally in libc,christos
by introducing a hidden compat_foo() function, using that internally in libc, and exposing foo as a strong alias to compat_foo(). I am open for better ideas.
2012-07-19Minus (one) needs a backslash before the minus.wiz
2012-07-18Explain what's going on with fortify being disabled when the optimizer is off:christos
http://gcc.gnu.org/ml/gcc-patches/2012-06/msg00174.html
2011-03-21Fix xref; security(8) -> security(7).jruoho
2010-12-28off by onechristos
2010-12-19Xref __builtin_return_address(3).jruoho
2010-12-19Small modifications to wording, tidy up SEE ALSO.jruoho
2010-12-19Fix SYNOPSIS, add CAVEATS.jruoho
2010-12-16Reference __builtin_object_size(3) and attribute(3) with each other.jruoho
2010-04-22gcc -> GCC, offset indent.jruoho
2010-01-17Free malloc()ed buffer in error case. Found by cppcheck.wiz
2009-11-17make the "src" strings const as in the unchecked equivalentsdrochner
2009-02-05sign-compare fixlukem
2008-06-06fix a typoyamt
2008-05-25Remove trailing whitespace. Fix typo. Sort SEE ALSO.wiz
2008-05-25Prepare for HTML output. Remove dot at end of SEE ALSO.wiz
2008-04-30Convert TNF licenses to new 2 clause variantmartin
2008-04-28Remove clause 3 and 4 from TNF licensesmartin
2007-08-20Never use "utilize". It means exactly the same thing as "use", but itperry
is longer and more cumbersome. It can always be replaced with "use" without any change in meaning.
2007-08-04Update includes so that this builds for USE_FORT=no too.kristerw
2007-06-03#undef the fortified functions we use, otherwise we end up calling ourselveschristos
recursively. XXX: Do we need namespace.h here?
2007-05-31this is not needed.christos
2007-05-30Match usage of FORTIFY_SOURCE on other platforms by not requiring specialtls
include path: the normal header files now include the "SSP" ones (which one should note are not really named right: SSP and FORTIFY_SOURCE are independent features). Disable USE_SSP on targets where the compiler doesn't support it at all (mips, alpha) or it's known broken (sh3). But enable FORTIFY_SOURCE, without SSP, on those platforms -- tested on mipsel.
2007-05-30Move FORTIFY_SOURCE implementation from the somewhat ill-named "libssp"tls
(what other systems keep in libssp, we already have in libc) into libc to match what other systems with FORTIFY_SOURCE do. Goodbye, libssp dependency in libraries and executables. Discussed with christos and mrg; Christos will merge the headers to get us the rest of the way to a FORTIFY_SOURCE implementation that works as others' code expects.