jenkins-admin at FreeBSD.org
2016-Jun-08 19:18 UTC
FreeBSD_stable_9 - Build #1142 - Failure
FreeBSD_stable_9 - Build #1142 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1142/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1142/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1142/console Change summaries: 301688 by ngie: MFstable/10 r301687: MFC r300624: Fix up r300385 I accidentally glossed over the fact that tmp is manipulated via strchr, so if we tried to free `tmp` after r300385, it would have crashed. Create a separate pointer (tmp2) to track the original allocation of `tmp`, and free `tmp2` if `p->nc_lookups` can't be malloced CID: 1356026 301686 by ngie: MFstable/10 r301684: MFC r300385: Don't leak `tmp` if `p->nc_lookups` can't be malloced 301685 by ngie: MFstable/10 r301682: MFC r300386: Don't leak `handle` if svc_tp_create(..) succeeds and allocating a new struct xlist object fails CID: 978277 301681 by ngie: MFstable/10 r301680: MFC r300625: Remove unnecessary memset(.., 0, ..)'s The mem_alloc macro calls calloc (userspace) / malloc(.., M_WAITOK|M_ZERO) under the covers, so zeroing out memory is already handled by the underlying calls 301676 by ngie: MFstable/10 r301675: MFC r300714: The readme provides a high-level overview of how to upgrade top(1). Reviewed By: ngie 301674 by ngie: MFstable/10 r301673: MFC r299699: Remove NO_WERROR from libbsnmp/Makefile.inc This has been compiling without warnings with clang/gcc for a while now Tested with: clang 3.8.0, gcc 4.2.x, gcc 5.x 301672 by ngie: MFstable/10 r301671: MFC r299815: Remove NO_WERROR.clang from this Makefile This compiles with clang without warnings 301670 by ngie: MFstable/10 r301669: MFC r299806: Bump WARNS to 6 301668 by ngie: MFstable/10 r301667: MFC r299834: Fix .Dd Today is the 14th, not the 10th of May 301664 by ngie: MFstable/10 r301663: MFC r294507,r294567,r299466: r294507 (by harti): Fill the ifAlias leaf of the ifXTable with the interface description if there is one available and it fits into the maximum size (64 characters). r294567 (by bz): Change the variable to a #define in order to make gcc happy which otherwise will complain about "variably modified 'alias' at file scope". Unbreaks the build on gcc platforms. r299466 (by cem): bsnmpd: Fix size of trapsink::comm to match other community arrays This fixes a number of possible strcpy() buffer overruns between the various community strings in trap.c. CIDs: 1006820, 1006821, 1006822 301662 by ngie: MFstable/10 r301661: MFC r256678,r256680,r260986,r272878,r286402: r256678 (by syrinx): Fix SNMP Error response PDUs and properly encode them when using v3 auth/encryption. r256680 (by syrinx): Fix the -Wconversion warnings produced when compiling the SNMP agent. r260986 (by harti): Fix a problem with OBJECT IDENTIFIER encoding: need to check the second subid to be less than 40, not the first when the first subid is 0 or 1. r272878 (by syrinx): Fix a bug in decoding string indexes in snmp_target(3), thus causing bsnmpd(1) to not send v3 notifications properly; while here add two missing return statements which could lead to abort() in case of a rollback r286402 (by araujo): Fix variable 'old' is used uninitialized whenever '&&' condition is false. Spotted by clang. 301659 by ngie: MFstable/10 r301657: MFC r299701: Move _bsnmptools_debug extern from bsnmpmap.c to bsnmptools.h It was used in bsnmpmap.c but was stored in bsnmptools.c; moving the extern to the header allows us to cover all of our bases for the variable, and allows _bsnmptools_debug to be used in the future elsewhere -- not just bsnmpmap.c. 301654 by ngie: MFstable/10 r301653: MFC r299810: Correct function names that failed in error messages It should be calloc/strdup, not malloc 301652 by ngie: MFstable/10 r300475: MFC r299710,r299711,r299763,r299783,r299811: r299710: Staticize global variables only used in bsnmpimport.c to fix -Wmissing-variable-declarations warnings r299711: Fold two malloc + memset(.., 0, ..) calls into equivalent calloc calls r299763: Mute -Wstrlcpy-strlcat-size warning by using nitems with the size of the buffer This is a no-op as the malloc above set the size of the buffer to the size used below, but this keeps things consistent in case the malloc call changes somehow. r299783: Convert tok from enum tok to int32_t in function calls get_token(..) returns int32_t, not enum tok, and in many cases tests for items not in enum tok (e.g. '('). Make the typing consistent with get_token, which includes a domino effect of changing enum tok to int32_t. r299811: Use strdup instead of malloc + strlcpy Fix error messages on failure for calloc/strdup 301650 by ngie: MFstable/10 r301636: MFC r300867,r300932,r300934,r300941,r300972,r300973: r300867: Only expose `hint_uaddr` in the ND_DEBUG case This fixes a -Wunused-but-set-variable warning with gcc r300932: Catch malloc(3) errors and socket(2) errors - malloc failing will result in a delayed segfault - socket failing will result in delayed failures with setsockopt Exit in the event that either of these high-level conditions are met. CID: 976288, 976321, 976858 r300934: Plug leak with ifp by calling freeifaddrs after calling getifaddrs Obtained from: NetBSD v1.18 r300941: Don't leak res in network_init(..) Call freeaddrinfo on it after it's been used CID: 1225050 r300972 (by markj): Fix rpcbind init after r300941. - getaddrinfo() sets res = NULL on failure and freeaddrinfo() always dereferences its argument, so we should only free the address list after a successful call. - Address a second potential leak caused by getaddrinfo(AF_INET6) overwriting the address list returned by getaddrinfo(AF_INET). X-MFC-With: r300941 r300973: Follow up to r300932 In the event MK_INET6 != no in userspace, but is disabled in the kernel, or if there aren't any IPv6 addresses configured in userspace (for lo0 and all physical interfaces), rpcbind would terminate immediately instead of silently failing on Skip over the IPv6 block to its respective cleanup with freeifaddrs if creating the socket failed instead of terminating rpcbind immediately 301649 by ngie: MFstable/10 r301648: MFC r300947: Staticize variables only used in rpcbind.c This is some low hanging fruit necessary for making this WARNS?= 6 clean 301647 by ngie: MFstable/10 r301646: MFC r300945: Remove unnecessary caller_uaddr != NULL test before calling free on it 301645 by ngie: MFstable/10 r301644: MFC r300942: Remove a useless if (x != NULL) check before calling free on allocated_uaddr 301643 by ngie: MFC r300932,r300934,r300941,r300972,r300973: r300932: Catch malloc(3) errors and socket(2) errors - malloc failing will result in a delayed segfault - socket failing will result in delayed failures with setsockopt Exit in the event that either of these high-level conditions are met. CID: 976288, 976321, 976858 r300934: Plug leak with ifp by calling freeifaddrs after calling getifaddrs Obtained from: NetBSD v1.18 r300941: Don't leak res in network_init(..) Call freeaddrinfo on it after it's been used CID: 1225050 r300972 (by markj): Fix rpcbind init after r300941. - getaddrinfo() sets res = NULL on failure and freeaddrinfo() always dereferences its argument, so we should only free the address list after a successful call. - Address a second potential leak caused by getaddrinfo(AF_INET6) overwriting the address list returned by getaddrinfo(AF_INET). X-MFC-With: r300941 r300973: Follow up to r300932 In the event MK_INET6 != no in userspace, but is disabled in the kernel, or if there aren't any IPv6 addresses configured in userspace (for lo0 and all physical interfaces), rpcbind would terminate immediately instead of silently failing on Skip over the IPv6 block to its respective cleanup with freeifaddrs if creating the socket failed instead of terminating rpcbind immediately 301642 by ngie: MFstable/10 r296994: r296994 (by asomers): MFC r293229, r293833 to usr.sbin/rpcbind r293833 | asomers | 2016-01-13 10:33:50 -0700 (Wed, 13 Jan 2016) | 16 lines Fix Coverity warnings regarding r293229 rpcbind/check_bound.c Fix CID1347798, a memory leak in mergeaddr. rpcbind/tests/addrmerge_test.c Fix CID1347800 through CID1347803, memory leaks in ATF tests. They are harmless because each ATF test case runs in its own process, but they are trivial to fix. Fix a few other leaks that Coverity didn't detect, too. r293229 | asomers | 2016-01-05 17:00:11 -0700 (Tue, 05 Jan 2016) | 36 lines "source routing" in rpcbind Fix a bug in rpcbind for multihomed hosts. If the server had interfaces on two separate subnets, and a client on the first subnet contacted rpcbind at the address on the second subnet, rpcbind would advertise addresses on the first subnet. This is a bug, because it should prefer to advertise the address where it was contacted. The requested service might be firewalled off from the address on the first subnet, for example. usr.sbin/rpcbind/check_bound.c If the address on which a request was received is known, pass that to addrmerge as the clnt_uaddr parameter. That is what addrmerge's comment indicates the parameter is supposed to mean. The previous behavior is that clnt_uaddr would contain the address from which the client sent the request. usr.sbin/rpcbind/util.c Modify addrmerge to prefer to use an IP that is equal to clnt_uaddr, if one is found. Refactor the relevant portion of the function for clarity, and to reduce the number of ifdefs. etc/mtree/BSD.tests.dist usr.sbin/rpcbind/tests/Makefile usr.sbin/rpcbind/tests/addrmerge_test.c Add unit tests for usr.sbin/rpcbind/util.c:addrmerge. usr.sbin/rpcbind/check_bound.c usr.sbin/rpcbind/rpcbind.h usr.sbin/rpcbind/util.c Constify some function arguments The end of the build log: [...truncated 56830 lines...] cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xinstall/../../contrib/mtree -I/builds/FreeBSD_stable_9/usr.bin/xinstall/../../lib/libnetbsd -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xinstall/xinstall.c -o xinstall.o ===> usr.bin/xlint (all) ===> usr.bin/xlint/lint1 (all) cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/mem1.c -o mem1.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/common/put.c -o put.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xargs/strnsubst.c -o strnsubst.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common/mem.c -o mem.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/xargs/xargs.1 > xargs.1.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o xargs xargs.o strnsubst.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/err.c -o err.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/common/screen.c -o screen.o ===> usr.bin/xstr (all) cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xstr/xstr.c -o xstr.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/main1.c -o main1.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/common/search.c -o search.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/decl.c -o decl.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xinstall/../../contrib/mtree -I/builds/FreeBSD_stable_9/usr.bin/xinstall/../../lib/libnetbsd -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xinstall/../../contrib/mtree/getid.c -o getid.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/xstr/xstr.1 > xstr.1.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o xstr xstr.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/common/seq.c -o seq.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/common/recover.c -o recover.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/xinstall/install.1 > install.1.gz cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xinstall/../../contrib/mtree -I/builds/FreeBSD_stable_9/usr.bin/xinstall/../../lib/libnetbsd -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o xinstall xinstall.o getid.o -lmd cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/common/util.c -o util.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/init.c -o init.o ===> usr.bin/xz (all) cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/args.c -o args.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex.c -o ex.o ===> usr.bin/xzdec (all) cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/xzdec/xzdec.c -o xzdec.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/coder.c -o coder.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/common/tuklib_progname.c -o tuklib_progname.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/common/tuklib_exit.c -o tuklib_exit.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/xzdec/xzdec.1 > xzdec.1.gz cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xzdec/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -o xzdec xzdec.o tuklib_progname.o tuklib_exit.o -llzma cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/file_io.c -o file_io.o ===> usr.bin/yacc (all) cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/closure.c -o closure.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/emit.c -o emit.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/error.c -o error.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/emit1.c -o emit1.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/hardware.c -o hardware.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/list.c -o list.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/lalr.c -o lalr.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common/inittyp.c -o inittyp.o sh /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/makeman /builds/FreeBSD_stable_9/obj/builds/FreeBSD_stable_9/tmp/usr/libexec/lint1 -m >lint.7 cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c cgram.c -o cgram.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_abbrev.c -o ex_abbrev.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/lr0.c -o lr0.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/main.c -o main.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_append.c -o ex_append.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_args.c -o ex_args.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/message.c -o message.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/main.c -o main.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/tree.c -o tree.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_argv.c -o ex_argv.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/mkpar.c -o mkpar.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/options.c -o options.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/output.c -o output.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/signals.c -o signals.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/suffix.c -o suffix.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_at.c -o ex_at.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/util.c -o util.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_bang.c -o ex_bang.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_cd.c -o ex_cd.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common/tuklib_open_stdxxx.c -o tuklib_open_stdxxx.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_cmd.c -o ex_cmd.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common/tuklib_progname.c -o tuklib_progname.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common/tuklib_exit.c -o tuklib_exit.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_cscope.c -o ex_cscope.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common/tuklib_cpucores.c -o tuklib_cpucores.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common/tuklib_mbstr_width.c -o tuklib_mbstr_width.o cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common/tuklib_mbstr_fw.c -o tuklib_mbstr_fw.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/xz/xz.1 > xz.1.gz cc -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_stable_9/usr.bin/xz/../../lib/liblzma -I/builds/FreeBSD_stable_9/usr.bin/xz/../../contrib/xz/src/common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -o xz args.o coder.o file_io.o hardware.o list.o main.o message.o options.o signals.o suffix.o util.o tuklib_open_stdxxx.o tuklib_progname.o tuklib_exit.o tuklib_cpucores.o tuklib_mbstr_width.o tuklib_mbstr_fw.o -llzma cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_delete.c -o ex_delete.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/reader.c -o reader.o ===> usr.bin/yes (all) cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yes/yes.c -o yes.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/yes/yes.1 > yes.1.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o yes yes.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_display.c -o ex_display.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_edit.c -o ex_edit.o ===> usr.bin/ypcat (all) cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_equal.c -o ex_equal.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint1/func.c -o func.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/ypcat/ypcat.c -o ypcat.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_file.c -o ex_file.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_filter.c -o ex_filter.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/ypcat/ypcat.1 > ypcat.1.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -o ypcat ypcat.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_global.c -o ex_global.o ===> usr.bin/ypmatch (all) cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/ypmatch/ypmatch.c -o ypmatch.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_init.c -o ex_init.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c scan.c -o scan.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/ypmatch/ypmatch.1 > ypmatch.1.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -o ypmatch ypmatch.o gzip -cn lint.7 > lint.7.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/skeleton.c -o skeleton.o ===> usr.bin/ypwhich (all) cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_join.c -o ex_join.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/ypwhich/ypwhich.c -o ypwhich.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_map.c -o ex_map.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/ypwhich/ypwhich.1 > ypwhich.1.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -o ypwhich ypwhich.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_mark.c -o ex_mark.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/symtab.c -o symtab.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_mkexrc.c -o ex_mkexrc.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/verbose.c -o verbose.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_move.c -o ex_move.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_open.c -o ex_open.o cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/yacc/warshall.c -o warshall.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_preserve.c -o ex_preserve.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/yacc/yacc.1 > yacc.1.gz gzip -cn /builds/FreeBSD_stable_9/usr.bin/yacc/yyfix.1 > yyfix.1.gz cc -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o yacc closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o skeleton.o symtab.o verbose.o warshall.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_print.c -o ex_print.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_put.c -o ex_put.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_quit.c -o ex_quit.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_read.c -o ex_read.o cc -O2 -pipe -I. -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint1/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -o lint1 cgram.o scan.o mem1.o mem.o err.o main1.o decl.o tree.o func.o init.o emit.o emit1.o inittyp.o -ll -lm cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_screen.c -o ex_screen.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_script.c -o ex_script.o ===> usr.bin/xlint/lint2 (all) cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_set.c -o ex_set.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/main2.c -o main2.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_shell.c -o ex_shell.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/hash.c -o hash.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_shift.c -o ex_shift.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/read.c -o read.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_source.c -o ex_source.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common/mem.c -o mem.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/mem2.c -o mem2.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_stop.c -o ex_stop.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/chk.c -o chk.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_subst.c -o ex_subst.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/msg.c -o msg.o /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_subst.c: In function 's': /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_subst.c:421: warning: comparison is always false due to limited range of data type /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_subst.c:423: warning: comparison is always false due to limited range of data type cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1/emit.c -o emit.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/emit2.c -o emit2.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_tag.c -o ex_tag.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_txt.c -o ex_txt.o /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_txt.c: In function 'ex_txt': /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_txt.c:109: warning: implicit declaration of function 'v_txt_auto' cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common/inittyp.c -o inittyp.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_undo.c -o ex_undo.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../lint1 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/lint2/../common -std=gnu99 -fstack-protector -Wno-pointer-sign -o lint2 main2.o hash.o read.o mem.o mem2.o chk.o msg.o emit.o emit2.o inittyp.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_usage.c -o ex_usage.o ===> usr.bin/xlint/xlint (all) cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_util.c -o ex_util.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../lint1 -DPREFIX=\"\" -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/xlint/xlint.c -o xlint.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../lint1 -DPREFIX=\"\" -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../common/mem.c -o mem.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/xlint/xlint/lint.1 > lint.1.gz cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_version.c -o ex_version.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_visual.c -o ex_visual.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_write.c -o ex_write.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_yank.c -o ex_yank.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_z.c -o ex_z.o cc -O2 -pipe -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../lint1 -DPREFIX=\"\" -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../arch/amd64 -I/builds/FreeBSD_stable_9/usr.bin/xlint/xlint/../common -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o xlint xlint.o mem.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_tcl.c -o ex_tcl.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/ex/ex_perl.c -o ex_perl.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/getc.c -o getc.o ===> usr.bin/xlint/llib (all) cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_at.c -o v_at.o lint -cghapbx -Cposix /builds/FreeBSD_stable_9/usr.bin/xlint/llib/llib-lposix /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/getc.c: In function 'cs_init': /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/getc.c:52: warning: passing argument 3 of 'db_eget' from incompatible pointer type llib-lposix: /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/getc.c: In function 'cs_prev': /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/getc.c:182: warning: passing argument 4 of 'db_get' from incompatible pointer type lint -cghapbx -Cstdc /builds/FreeBSD_stable_9/usr.bin/xlint/llib/llib-lstdc llib-lstdc: _types.h(62): warning: struct __timer never defined [233] _types.h(63): warning: struct __mq never defined [233] stdio.h(142): warning: struct pthread_mutex never defined [233] stdio.h(143): warning: struct pthread never defined [233] Lint pass2: cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_ch.c -o v_ch.o _types.h(62): warning: struct __timer never defined [233] _types.h(63): warning: struct __mq never defined [233] _pthreadtypes.h(44): warning: struct pthread never defined [233] _pthreadtypes.h(45): warning: struct pthread_attr never defined [233] _pthreadtypes.h(46): warning: struct pthread_cond never defined [233] _pthreadtypes.h(47): warning: struct pthread_cond_attr never defined [233] _pthreadtypes.h(48): warning: struct pthread_mutex never defined [233] _pthreadtypes.h(49): warning: struct pthread_mutex_attr never defined [233] _pthreadtypes.h(51): warning: struct pthread_rwlock never defined [233] _pthreadtypes.h(52): warning: struct pthread_rwlockattr never defined [233] _pthreadtypes.h(53): warning: struct pthread_barrier never defined [233] _pthreadtypes.h(54): warning: struct pthread_barrier_attr never defined [233] _pthreadtypes.h(55): warning: struct pthread_spinlock never defined [233] _pthreadtypes.h(78): warning: struct pthread_barrierattr never defined [233] signal.h(294): warning: struct __siginfo never defined [233] Lint pass2: uname multiply defined llib-lposix?(42) :: llib-lposix(303) cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_cmd.c -o v_cmd.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_delete.c -o v_delete.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_ex.c -o v_ex.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_increment.c -o v_increment.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_init.c -o v_init.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_itxt.c -o v_itxt.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_left.c -o v_left.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_mark.c -o v_mark.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_match.c -o v_match.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_paragraph.c -o v_paragraph.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_put.c -o v_put.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_redraw.c -o v_redraw.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_replace.c -o v_replace.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_right.c -o v_right.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_screen.c -o v_screen.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_scroll.c -o v_scroll.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_search.c -o v_search.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_section.c -o v_section.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_sentence.c -o v_sentence.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_status.c -o v_status.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_txt.c -o v_txt.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_ulcase.c -o v_ulcase.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_undo.c -o v_undo.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_util.c -o v_util.o /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_txt.c: In function 'txt_fc_col': /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_txt.c:2247: warning: comparison of distinct pointer types lacks a cast /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_txt.c:2265: warning: comparison of distinct pointer types lacks a cast /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_ulcase.c: In function 'v_mulcase': /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_ulcase.c:119: warning: passing argument 4 of 'db_get' from incompatible pointer type cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_word.c -o v_word.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_xchar.c -o v_xchar.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_yank.c -o v_yank.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_z.c -o v_z.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/v_zexit.c -o v_zexit.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/vi.c -o vi.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/vs_line.c -o vs_line.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/vs_msg.c -o vs_msg.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/vs_refresh.c -o vs_refresh.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/vs_relative.c -o vs_relative.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/vs_smap.c -o vs_smap.o cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -c /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/vi/vs_split.c -o vs_split.o gzip -cn /builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/docs/USD.doc/vi.man/vi.1 > vi.1.gz cc -O2 -pipe -DGTAGS -DSYSV_CURSES -I/builds/FreeBSD_stable_9/usr.bin/vi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi -I/builds/FreeBSD_stable_9/usr.bin/vi/../../contrib/nvi/include -std=gnu99 -fstack-protector -Wno-pointer-sign -o nvi cl_bsd.o cl_funcs.o cl_main.o cl_read.o cl_screen.o cl_term.o cut.o delete.o exf.o key.o line.o log.o main.o mark.o msg.o options.o options_f.o put.o screen.o search.o seq.o recover.o util.o ex.o ex_abbrev.o ex_append.o ex_args.o ex_argv.o ex_at.o ex_bang.o ex_cd.o ex_cmd.o ex_cscope.o ex_delete.o ex_display.o ex_edit.o ex_equal.o ex_file.o ex_filter.o ex_global.o ex_init.o ex_join.o ex_map.o ex_mark.o ex_mkexrc.o ex_move.o ex_open.o ex_preserve.o ex_print.o ex_put.o ex_quit.o ex_read.o ex_screen.o ex_script.o ex_set.o ex_shell.o ex_shift.o ex_source.o ex_stop.o ex_subst.o ex_tag.o ex_txt.o ex_undo.o ex_usage.o ex_util.o ex_version.o ex_visual.o ex_write.o ex_yank.o ex_z.o ex_tcl.o ex_perl.o getc.o v_at.o v_ch.o v_cmd.o v_delete.o v_ex.o v_increment.o v_init.o v_itxt.o v_left.o v_mark.o v_match.o v_paragraph.o v_put.o v_redraw.o v_replace.o v_right.o v_screen.o v_scroll.o v_search.o v_section.o v_sentence.o v_status.o v_txt.o v_ulcase.o v_undo.o v_util.o v_word.o v_xchar.o v_yank.o v_z.o v_zexit.o vi.o vs_line.o vs_msg.o vs_refresh.o vs_relative.o vs_smap.o vs_split.o -lncurses 1 error *** [everything] Error code 2 1 error *** [buildworld] Error code 2 1 error Build step 'Execute shell' marked build as failure Email was triggered for: Failure - Any Sending email for trigger: Failure - Any
> On Jun 8, 2016, at 15:18, jenkins-admin at freebsd.org wrote: > > FreeBSD_stable_9 - Build #1142 - Failure: > > Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1142/ > Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1142/changes > Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1142/console > > Change summaries: > > 301688 by ngie: > MFstable/10 r301687: > > MFC r300624: > > Fix up r300385 > > I accidentally glossed over the fact that tmp is manipulated via strchr, so > if we tried to free `tmp` after r300385, it would have crashed. > > Create a separate pointer (tmp2) to track the original allocation of `tmp`, > and free `tmp2` if `p->nc_lookups` can't be malloced > > CID: 1356026 > > 301686 by ngie: > MFstable/10 r301684: > > MFC r300385: > > Don't leak `tmp` if `p->nc_lookups` can't be malloced > > 301685 by ngie: > MFstable/10 r301682: > > MFC r300386: > > Don't leak `handle` if svc_tp_create(..) succeeds and allocating a new > struct xlist object fails > > CID: 978277 > > 301681 by ngie: > MFstable/10 r301680: > > MFC r300625: > > Remove unnecessary memset(.., 0, ..)'s > > The mem_alloc macro calls calloc (userspace) / malloc(.., M_WAITOK|M_ZERO) > under the covers, so zeroing out memory is already handled by the underlying > calls > > 301676 by ngie: > MFstable/10 r301675: > > MFC r300714: > > The readme provides a high-level overview of how to upgrade top(1). > > Reviewed By: ngie > > 301674 by ngie: > MFstable/10 r301673: > > MFC r299699: > > Remove NO_WERROR from libbsnmp/Makefile.inc > > This has been compiling without warnings with clang/gcc for a while now > > Tested with: clang 3.8.0, gcc 4.2.x, gcc 5.x > > 301672 by ngie: > MFstable/10 r301671: > > MFC r299815: > > Remove NO_WERROR.clang from this Makefile > > This compiles with clang without warnings > > 301670 by ngie: > MFstable/10 r301669: > > MFC r299806: > > Bump WARNS to 6 > > 301668 by ngie: > MFstable/10 r301667: > > MFC r299834: > > Fix .Dd > > Today is the 14th, not the 10th of May > > 301664 by ngie: > MFstable/10 r301663: > > MFC r294507,r294567,r299466: > > r294507 (by harti): > > Fill the ifAlias leaf of the ifXTable with the interface description > if there is one available and it fits into the maximum size (64 characters). > > r294567 (by bz): > > Change the variable to a #define in order to make gcc happy which > otherwise will complain about "variably modified 'alias' at file scope". > Unbreaks the build on gcc platforms. > > r299466 (by cem): > > bsnmpd: Fix size of trapsink::comm to match other community arrays > > This fixes a number of possible strcpy() buffer overruns between the various > community strings in trap.c. > > CIDs: 1006820, 1006821, 1006822 > > 301662 by ngie: > MFstable/10 r301661: > > MFC r256678,r256680,r260986,r272878,r286402: > > r256678 (by syrinx): > > Fix SNMP Error response PDUs and properly encode them when using v3 auth/encryption. > > r256680 (by syrinx): > > Fix the -Wconversion warnings produced when compiling the SNMP agent. > > r260986 (by harti): > > Fix a problem with OBJECT IDENTIFIER encoding: need to check the > second subid to be less than 40, not the first when the first > subid is 0 or 1. > > r272878 (by syrinx): > > Fix a bug in decoding string indexes in snmp_target(3), thus causing > bsnmpd(1) to not send v3 notifications properly; while here add two > missing return statements which could lead to abort() in case of a > rollback > > r286402 (by araujo): > > Fix variable 'old' is used uninitialized whenever '&&' condition is false. > Spotted by clang. > > 301659 by ngie: > MFstable/10 r301657: > > MFC r299701: > > Move _bsnmptools_debug extern from bsnmpmap.c to bsnmptools.h > > It was used in bsnmpmap.c but was stored in bsnmptools.c; moving the extern > to the header allows us to cover all of our bases for the variable, and allows > _bsnmptools_debug to be used in the future elsewhere -- not just bsnmpmap.c. > > 301654 by ngie: > MFstable/10 r301653: > > MFC r299810: > > Correct function names that failed in error messages > > It should be calloc/strdup, not malloc > > 301652 by ngie: > MFstable/10 r300475: > > MFC r299710,r299711,r299763,r299783,r299811: > > r299710: > > Staticize global variables only used in bsnmpimport.c to fix > -Wmissing-variable-declarations warnings > > r299711: > > Fold two malloc + memset(.., 0, ..) calls into equivalent calloc calls > > r299763: > > Mute -Wstrlcpy-strlcat-size warning by using nitems with the size of the buffer > > This is a no-op as the malloc above set the size of the buffer to the size used > below, but this keeps things consistent in case the malloc call changes somehow. > > r299783: > > Convert tok from enum tok to int32_t in function calls > > get_token(..) returns int32_t, not enum tok, and in many cases tests for items > not in enum tok (e.g. '('). Make the typing consistent with get_token, which > includes a domino effect of changing enum tok to int32_t. > > r299811: > > Use strdup instead of malloc + strlcpy > > Fix error messages on failure for calloc/strdup > > 301650 by ngie: > MFstable/10 r301636: > > MFC r300867,r300932,r300934,r300941,r300972,r300973: > > r300867: > > Only expose `hint_uaddr` in the ND_DEBUG case > > This fixes a -Wunused-but-set-variable warning with gcc > > r300932: > > Catch malloc(3) errors and socket(2) errors > > - malloc failing will result in a delayed segfault > - socket failing will result in delayed failures with setsockopt > > Exit in the event that either of these high-level conditions are met. > > CID: 976288, 976321, 976858 > > r300934: > > Plug leak with ifp by calling freeifaddrs after calling getifaddrs > > Obtained from: NetBSD v1.18 > > r300941: > > Don't leak res in network_init(..) > > Call freeaddrinfo on it after it's been used > > CID: 1225050 > > r300972 (by markj): > > Fix rpcbind init after r300941. > > - getaddrinfo() sets res = NULL on failure and freeaddrinfo() always > dereferences its argument, so we should only free the address list after > a successful call. > - Address a second potential leak caused by getaddrinfo(AF_INET6) > overwriting the address list returned by getaddrinfo(AF_INET). > > X-MFC-With: r300941 > > r300973: > > Follow up to r300932 > > In the event MK_INET6 != no in userspace, but is disabled in the > kernel, or if there aren't any IPv6 addresses configured in userspace > (for lo0 and all physical interfaces), rpcbind would terminate > immediately instead of silently failing on > > Skip over the IPv6 block to its respective cleanup with freeifaddrs if > creating the socket failed instead of terminating rpcbind immediately > > 301649 by ngie: > MFstable/10 r301648: > > MFC r300947: > > Staticize variables only used in rpcbind.c > > This is some low hanging fruit necessary for making this WARNS?= 6 clean > > 301647 by ngie: > MFstable/10 r301646: > > MFC r300945: > > Remove unnecessary caller_uaddr != NULL test before calling free on it > > 301645 by ngie: > MFstable/10 r301644: > > MFC r300942: > > Remove a useless if (x != NULL) check before calling free on allocated_uaddr > > 301643 by ngie: > MFC r300932,r300934,r300941,r300972,r300973: > > r300932: > > Catch malloc(3) errors and socket(2) errors > > - malloc failing will result in a delayed segfault > - socket failing will result in delayed failures with setsockopt > > Exit in the event that either of these high-level conditions are met. > > CID: 976288, 976321, 976858 > > r300934: > > Plug leak with ifp by calling freeifaddrs after calling getifaddrs > > Obtained from: NetBSD v1.18 > > r300941: > > Don't leak res in network_init(..) > > Call freeaddrinfo on it after it's been used > > CID: 1225050 > > r300972 (by markj): > > Fix rpcbind init after r300941. > > - getaddrinfo() sets res = NULL on failure and freeaddrinfo() always > dereferences its argument, so we should only free the address list after > a successful call. > - Address a second potential leak caused by getaddrinfo(AF_INET6) > overwriting the address list returned by getaddrinfo(AF_INET). > > X-MFC-With: r300941 > > r300973: > > Follow up to r300932 > > In the event MK_INET6 != no in userspace, but is disabled in the > kernel, or if there aren't any IPv6 addresses configured in userspace > (for lo0 and all physical interfaces), rpcbind would terminate > immediately instead of silently failing on > > Skip over the IPv6 block to its respective cleanup with freeifaddrs if > creating the socket failed instead of terminating rpcbind immediately > > 301642 by ngie: > MFstable/10 r296994: > r296994 (by asomers): > > MFC r293229, r293833 to usr.sbin/rpcbind > > r293833 | asomers | 2016-01-13 10:33:50 -0700 (Wed, 13 Jan 2016) | 16 lines > > Fix Coverity warnings regarding r293229 > > rpcbind/check_bound.c > Fix CID1347798, a memory leak in mergeaddr. > > rpcbind/tests/addrmerge_test.c > Fix CID1347800 through CID1347803, memory leaks in ATF tests. They > are harmless because each ATF test case runs in its own process, but > they are trivial to fix. Fix a few other leaks that Coverity didn't > detect, too. > > r293229 | asomers | 2016-01-05 17:00:11 -0700 (Tue, 05 Jan 2016) | 36 lines > > "source routing" in rpcbind > > Fix a bug in rpcbind for multihomed hosts. If the server had interfaces on > two separate subnets, and a client on the first subnet contacted rpcbind at > the address on the second subnet, rpcbind would advertise addresses on the > first subnet. This is a bug, because it should prefer to advertise the > address where it was contacted. The requested service might be firewalled > off from the address on the first subnet, for example. > > usr.sbin/rpcbind/check_bound.c > If the address on which a request was received is known, pass that > to addrmerge as the clnt_uaddr parameter. That is what addrmerge's > comment indicates the parameter is supposed to mean. The previous > behavior is that clnt_uaddr would contain the address from which the > client sent the request. > > usr.sbin/rpcbind/util.c > Modify addrmerge to prefer to use an IP that is equal to clnt_uaddr, > if one is found. Refactor the relevant portion of the function for > clarity, and to reduce the number of ifdefs. > > etc/mtree/BSD.tests.dist > usr.sbin/rpcbind/tests/Makefile > usr.sbin/rpcbind/tests/addrmerge_test.c > Add unit tests for usr.sbin/rpcbind/util.c:addrmerge. > > usr.sbin/rpcbind/check_bound.c > usr.sbin/rpcbind/rpcbind.h > usr.sbin/rpcbind/util.c > Constify some function argumentsMy bad ? the compilation error with bsnmp should be fixed by r301690. Thanks, -Ngie -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 842 bytes Desc: Message signed with OpenPGP using GPGMail URL: <http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20160608/92fa5fad/attachment.sig>
FreeBSD_stable_9 - Build #1143 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1143/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1143/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_stable_9/1143/console Change summaries: 301690 by ngie: MFstable/10 r301655: MFC r299766: Fix logically dead code pointed out by clang/Coverity parse_context, parse_user_security: test for validity of results from parse_ascii(..) with by casting to int32_t and comparing to -1; comparing unsigned types to negative values will always be false. CID: 1011432, 1011433