- Add support of MK_INET_SUPPORT=no.
- Fix a bug in sodump() which prevented struct sockaddr_in6 from displaying. - Fix a bug in in fiboptlist_csv() which could cause free() of uninitialized pointer. - Style cleanups: . Add missing "static" keywords. . Use an array of struct sockaddr_storage instead of sockunion for rtmsg. . Use err() and errx() instead of pair of fprintf(stderr, "...") + exit(1). . Use nitems() macro. . Various style(9) fixes.
This commit is contained in:
parent
d06990ae3d
commit
826b6d6978
@ -10,11 +10,12 @@ WARNS?= 3
|
|||||||
CLEANFILES+=keywords.h
|
CLEANFILES+=keywords.h
|
||||||
|
|
||||||
CFLAGS+= -DNS
|
CFLAGS+= -DNS
|
||||||
|
.if ${MK_INET_SUPPORT} != "no"
|
||||||
|
CFLAGS+= -DINET
|
||||||
|
.endif
|
||||||
.if ${MK_INET6_SUPPORT} != "no"
|
.if ${MK_INET6_SUPPORT} != "no"
|
||||||
CFLAGS+= -DINET6
|
CFLAGS+= -DINET6
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
CFLAGS+= -I.
|
CFLAGS+= -I.
|
||||||
|
|
||||||
keywords.h: keywords
|
keywords.h: keywords
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user