History log of /src/usr.sbin/traceroute6/Makefile |
Revision | | Date | Author | Comments |
1.12 |
| 03-Feb-2021 |
roy | traceroute6: Remove __packed
|
1.11 |
| 06-Sep-2020 |
mrg | add support for new GCC 9 warnings that may be too much to fix right now. new address-of-packed-member and format-overflow warnings have new GCC_NO_ADDR_OF_PACKED_MEMBER amd GCC_NO_FORMAT_OVERFLOW variables to remove these warnings.
apply to a bunch of the tree. mostly, these are real bugs that should be fixed, but in many cases, only by removing the 'packed' attribute from some structure that doesn't really need it. (i looked at many different ones, and while perhaps 60-80% were already properly aligned, it wasn't clear to me that the uses were always coming from sane data vs network alignment, so it doesn't seem safe to remove packed without careful research for each affect struct.) clang already warned (and was not erroring) for many of these cases, but gcc picked up dozens more.
|
1.10 |
| 23-Apr-2018 |
maxv | Remove CPPFLAGS+=-DUSE_RFC3542, it's not used anymore.
|
1.9 |
| 10-May-2011 |
christos | branches: 1.9.42; Add AS support for traceroute6. While here cleanup both traceroute programs a bit. XXX: Error printing on traceroute should be revisited.
|
1.8 |
| 22-Apr-2009 |
lukem | Enable WARNS=4 by default, except for: cpuctl dumplfs hprop ipf iprop-log kadmin kcm kdc kdigest kimpersonate kstash ktutil makefs ndbootd ntp pppd quot racoon racoonctl rtadvd sntp sup tcpdchk tcpdmatch tcpdump traceroute traceroute6 user veriexecgen wsmoused zic (Mostly third-party applications)
|
1.7 |
| 28-May-2007 |
tls | branches: 1.7.20; Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to various string and memory copy and set functions (as well as a few system calls and other miscellany) where known at function entry. RedHat has evidently built all "core system packages" with this option for some time.
This option should be used at the top of Makefiles (or Makefile.inc where this is used for subdirectories) but after any setting of LIB.
This is only useful for userland code, and cannot be used in libc or in any code which includes the libc internals, because it overrides certain libc functions with macros. Some effort has been made to make USE_FORT=yes work correctly for a full-system build by having the bsd.sys.mk logic disable the feature where it should not be used (libc, libssp iteself, the kernel) but no attempt has been made to build the entire system with USE_FORT and doing so will doubtless expose numerous bugs and misfeatures.
Adjust the system build so that all programs and libraries that are setuid, directly handle network data (including serial comm data), perform authentication, or appear likely to have (or have a history of having) data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default, with the exception of libc, which cannot use USE_FORT and thus uses only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no per-directory or in a system build will disable if desired.
|
1.6 |
| 05-May-2006 |
rpaulo | Add support for RFC 3542 Adv. Socket API for IPv6 (which obsoletes 2292). * RFC 3542 isn't binary compatible with RFC 2292. * RFC 2292 support is on by default but can be disabled. * update ping6, telnet and traceroute6 to the new API.
From the KAME project (www.kame.net). Reviewed by core.
|
1.5 |
| 08-Oct-2000 |
itojun | use poll(2).
|
1.4 |
| 07-Oct-2000 |
itojun | avoid fd_set size overflow. from deraadt@openbsd, sync with kame.
|
1.3 |
| 25-Feb-2000 |
mycroft | branches: 1.3.4; Nuke gratuitous setting of BINOWN and BINGRP.
|
1.2 |
| 03-Jul-1999 |
itojun | s/CFLAGS/CPPFLAGS/ for -D and -I.
|
1.1 |
| 01-Jul-1999 |
itojun | traceroute6: traceroute for IPv6.
TODO: better to be separate, or merged?
|
1.3.4.2 |
| 18-Oct-2000 |
tv | Pullup 1.5 [itojun]: use poll(2).
|
1.3.4.1 |
| 18-Oct-2000 |
tv | Pullup 1.4 [itojun]: avoid fd_set size overflow. from deraadt@openbsd, sync with kame.
|
1.7.20.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
|
1.9.42.1 |
| 02-May-2018 |
pgoyette | Synch with HEAD
|