Build failed in Jenkins: FreeBSD_stable_9 #553

jenkins-admin at freebsd.org jenkins-admin at freebsd.org
Tue Nov 25 19:05:27 UTC 2014


See <https://jenkins.freebsd.org/job/FreeBSD_stable_9/553/changes>

Changes:

[dteske] Similar to r274192: Enable dpv(1,3): Introduced [disabled] via r275047.
This is a direct commit to stable/9 because stable/10 and above use a
better dependency calculation routine (versus simple ordering).

Thanks to:	ngie, ian, jelischer, shurd, bapt

[dteske] MFC r274120, r274121, r274123, r274146, r274192, r274203, r274209,
r274226, r274270, and r274851: dpv(1,3)/figpar(3) fixes after r275047

Thanks to:	ngie, ian, jelischer, shurd, bapt

[dteske] MFC r274116:

Add new libraries/utilities for data throughput visualization.
dpv(3): dialog progress view library
dpv(1): stream data from stdin or multiple paths with dialog progress view
figpar(3): configuration file parsing library

MFC r274124: Temporarily _disable_ compilation of dpv(1,3)

NB: MFC broken into two halves (first half to bring in the new dirs so
mergeinfo can be properly recorded on them -- the second half of MFC).

Reviews:        D714
Relnotes:       New libdpv/libfigpar and dpv(1) utility
Reviewed by:    jelischer, shurd
Discussed at:   MeetBSD California 2014 Vendor/Dev Summit
Discussed on:   -current
Thanks to:      ngie, ian, jelischer, shurd, bapt

[dim] MFC r274900:

Fix the following -Werror warnings from clang 3.5.0, while building
bsnmpd's snmp_hostres module:

usr.sbin/bsnmpd/modules/snmp_hostres/hostres_snmp.c:204:20: error: absolute value function 'abs' given an argument of type 'const long' but has parameter of type 'int' which may cause truncation of value [-Werror,-Wabsolute-value]
        str[9] = (u_char)(abs(tm->tm_gmtoff) / 3600);
                          ^
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_snmp.c:204:20: note: use function 'labs' instead
        str[9] = (u_char)(abs(tm->tm_gmtoff) / 3600);
                          ^~~
                          labs
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_snmp.c:205:22: error: absolute value function 'abs' given an argument of type 'const long' but has parameter of type 'int' which may cause truncation of value [-Werror,-Wabsolute-value]
        str[10] = (u_char)((abs(tm->tm_gmtoff) % 3600) / 60);
                            ^
usr.sbin/bsnmpd/modules/snmp_hostres/hostres_snmp.c:205:22: note: use function 'labs' instead
        str[10] = (u_char)((abs(tm->tm_gmtoff) % 3600) / 60);
                            ^~~
                            labs

Since tm::tm_gmtoff is a long, use labs(3) instead.

[dim] MFC r274898:

Fix the following -Werror warnings from clang 3.5.0, while building
usr.sbin/rtadvd:

usr.sbin/rtadvd/rtadvd.c:1291:7: error: taking the absolute value of unsigned type 'unsigned int' has no effect [-Werror,-Wabsolute-value]
                    abs(preferred_time - pfx->pfx_pltimeexpire) > rai->rai_clockskew) {
                    ^
usr.sbin/rtadvd/rtadvd.c:1291:7: note: remove the call to 'abs' since unsigned values cannot be negative
                    abs(preferred_time - pfx->pfx_pltimeexpire) > rai->rai_clockskew) {
                    ^~~
usr.sbin/rtadvd/rtadvd.c:1324:7: error: taking the absolute value of unsigned type 'unsigned int' has no effect [-Werror,-Wabsolute-value]
                    abs(valid_time - pfx->pfx_vltimeexpire) > rai->rai_clockskew) {
                    ^
usr.sbin/rtadvd/rtadvd.c:1324:7: note: remove the call to 'abs' since unsigned values cannot be negative
                    abs(valid_time - pfx->pfx_vltimeexpire) > rai->rai_clockskew) {
                    ^~~
2 errors generated.

These warnings occur because both preferred_time and pfx_pltimeexpire
are uint32_t's, so the subtraction expression is also unsigned, and
calling abs() is a no-op.

However, the intention was to look at the absolute difference between
the two unsigned quantities.  Introduce a small static function to
clarify what we're doing, and call that instead.

Reviewed by:	hrs
Differential Revision: https://reviews.freebsd.org/D1197

[dim] MFC r274856:

Avoid undefined behaviour in gas's rotate_left() macro for n == 0.
Otherwise, clang can effectively remove the first iteration of the for
loops where this macro is invoked, and as a result, "cmp r0, #99" fails
to assemble.

Obtained from:	joerg at netbsd

------------------------------------------
[...truncated 30098 lines...]
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_dump.c> -o dwarf_dump.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_arg.c> -o fld_arg.So
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_dump.c> -o dwarf_dump.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write.c> -o archive_write.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_attr.c> -o fld_attr.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_disk.c> -o archive_write_disk.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_attr.c> -o fld_attr.So
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_errmsg.c> -o dwarf_errmsg.o
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_errmsg.c> -o dwarf_errmsg.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_current.c> -o fld_current.o
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_errno.c> -o dwarf_errno.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_disk.c> -o archive_write_disk.So
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_errno.c> -o dwarf_errno.So
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_finish.c> -o dwarf_finish.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_current.c> -o fld_current.So
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_finish.c> -o dwarf_finish.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_def.c> -o fld_def.o
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_form.c> -o dwarf_form.o
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_form.c> -o dwarf_form.So
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_def.c> -o fld_def.So
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_func.c> -o dwarf_func.o
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_func.c> -o dwarf_func.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_dup.c> -o fld_dup.o
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_init.c> -o dwarf_init.o
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_init.c> -o dwarf_init.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_disk_set_standard_lookup.c> -o archive_write_disk_set_standard_lookup.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_dup.c> -o fld_dup.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_disk_set_standard_lookup.c> -o archive_write_disk_set_standard_lookup.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_ftchoice.c> -o fld_ftchoice.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_fd.c> -o archive_write_open_fd.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_ftchoice.c> -o fld_ftchoice.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_fd.c> -o archive_write_open_fd.So
cc  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_loc.c> -o dwarf_loc.o
cc -fpic -DPIC  -O2 -pipe  -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libdwarf/dwarf_loc.c> -o dwarf_loc.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_ftlink.c> -o fld_ftlink.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_file.c> -o archive_write_open_file.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_file.c> -o archive_write_open_file.So
building static dwarf library
building shared library libdwarf.so.3
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_ftlink.c> -o fld_ftlink.So
ranlib libdwarf.a
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_filename.c> -o archive_write_open_filename.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_info.c> -o fld_info.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_filename.c> -o archive_write_open_filename.So
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_info.c> -o fld_info.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_memory.c> -o archive_write_open_memory.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_open_memory.c> -o archive_write_open_memory.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_just.c> -o fld_just.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_just.c> -o fld_just.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_bzip2.c> -o archive_write_set_compression_bzip2.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_link.c> -o fld_link.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_bzip2.c> -o archive_write_set_compression_bzip2.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_compress.c> -o archive_write_set_compression_compress.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_link.c> -o fld_link.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_max.c> -o fld_max.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_max.c> -o fld_max.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_compress.c> -o archive_write_set_compression_compress.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_move.c> -o fld_move.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_gzip.c> -o archive_write_set_compression_gzip.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_gzip.c> -o archive_write_set_compression_gzip.So
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_move.c> -o fld_move.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_newftyp.c> -o fld_newftyp.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_newftyp.c> -o fld_newftyp.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_none.c> -o archive_write_set_compression_none.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_opts.c> -o fld_opts.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_none.c> -o archive_write_set_compression_none.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_program.c> -o archive_write_set_compression_program.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_opts.c> -o fld_opts.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_program.c> -o archive_write_set_compression_program.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_pad.c> -o fld_pad.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_xz.c> -o archive_write_set_compression_xz.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_pad.c> -o fld_pad.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_compression_xz.c> -o archive_write_set_compression_xz.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_page.c> -o fld_page.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format.c> -o archive_write_set_format.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_page.c> -o fld_page.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format.c> -o archive_write_set_format.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_stat.c> -o fld_stat.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_ar.c> -o archive_write_set_format_ar.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_stat.c> -o fld_stat.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_ar.c> -o archive_write_set_format_ar.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_by_name.c> -o archive_write_set_format_by_name.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_type.c> -o fld_type.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_type.c> -o fld_type.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_user.c> -o fld_user.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_by_name.c> -o archive_write_set_format_by_name.So
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fld_user.c> -o fld_user.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_cpio.c> -o archive_write_set_format_cpio.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_cpio.c> -o archive_write_set_format_cpio.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_cursor.c> -o frm_cursor.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_cpio_newc.c> -o archive_write_set_format_cpio_newc.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_cursor.c> -o frm_cursor.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_cpio_newc.c> -o archive_write_set_format_cpio_newc.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_data.c> -o frm_data.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_data.c> -o frm_data.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_mtree.c> -o archive_write_set_format_mtree.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_def.c> -o frm_def.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_mtree.c> -o archive_write_set_format_mtree.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_pax.c> -o archive_write_set_format_pax.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_def.c> -o frm_def.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_driver.c> -o frm_driver.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_pax.c> -o archive_write_set_format_pax.So
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_driver.c> -o frm_driver.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_hook.c> -o frm_hook.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_shar.c> -o archive_write_set_format_shar.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_hook.c> -o frm_hook.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_shar.c> -o archive_write_set_format_shar.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_ustar.c> -o archive_write_set_format_ustar.o
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_opts.c> -o frm_opts.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_ustar.c> -o archive_write_set_format_ustar.So
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_zip.c> -o archive_write_set_format_zip.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_opts.c> -o frm_opts.So
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/archive_write_set_format_zip.c> -o archive_write_set_format_zip.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_page.c> -o frm_page.o
cc  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/filter_fork.c> -o filter_fork.o
cc -fpic -DPIC  -O2 -pipe  -DHAVE_BZLIB_H=1 -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 -DPLATFORM_CONFIG_H=\"<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/config_freebsd.h\"> -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive> -DWITH_OPENSSL -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/libarchive/../../contrib/libarchive/libarchive/filter_fork.c> -o filter_fork.So
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_page.c> -o frm_page.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_post.c> -o frm_post.o
building static archive library
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_post.c> -o frm_post.So
building shared library libarchive.so.5
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_req_name.c> -o frm_req_name.o
ranlib libarchive.a
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_req_name.c> -o frm_req_name.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_scale.c> -o frm_scale.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_scale.c> -o frm_scale.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_sub.c> -o frm_sub.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_sub.c> -o frm_sub.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_user.c> -o frm_user.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_user.c> -o frm_user.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_win.c> -o frm_win.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/frm_win.c> -o frm_win.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_alnum.c> -o fty_alnum.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_alnum.c> -o fty_alnum.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_alpha.c> -o fty_alpha.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_alpha.c> -o fty_alpha.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_enum.c> -o fty_enum.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_enum.c> -o fty_enum.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_int.c> -o fty_int.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_int.c> -o fty_int.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_ipv4.c> -o fty_ipv4.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_ipv4.c> -o fty_ipv4.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_num.c> -o fty_num.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_num.c> -o fty_num.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_regex.c> -o fty_regex.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/formw/../../../contrib/ncurses/form/fty_regex.c> -o fty_regex.So
building static formw library
building shared library libformw.so.5
ranlib libformw.a
===> lib/ncurses/menuw (all)
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_attribs.c> -o m_attribs.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_attribs.c> -o m_attribs.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_cursor.c> -o m_cursor.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_cursor.c> -o m_cursor.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_driver.c> -o m_driver.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_driver.c> -o m_driver.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_format.c> -o m_format.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_format.c> -o m_format.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_global.c> -o m_global.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_global.c> -o m_global.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_hook.c> -o m_hook.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_hook.c> -o m_hook.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_cur.c> -o m_item_cur.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_cur.c> -o m_item_cur.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_nam.c> -o m_item_nam.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_nam.c> -o m_item_nam.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_new.c> -o m_item_new.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_new.c> -o m_item_new.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_opt.c> -o m_item_opt.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_opt.c> -o m_item_opt.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_top.c> -o m_item_top.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_top.c> -o m_item_top.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_use.c> -o m_item_use.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_use.c> -o m_item_use.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_val.c> -o m_item_val.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_val.c> -o m_item_val.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_vis.c> -o m_item_vis.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_item_vis.c> -o m_item_vis.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_items.c> -o m_items.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_items.c> -o m_items.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_new.c> -o m_new.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_new.c> -o m_new.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_opts.c> -o m_opts.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_opts.c> -o m_opts.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_pad.c> -o m_pad.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_pad.c> -o m_pad.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_pattern.c> -o m_pattern.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_pattern.c> -o m_pattern.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_post.c> -o m_post.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_post.c> -o m_post.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_req_name.c> -o m_req_name.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_req_name.c> -o m_req_name.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_scale.c> -o m_scale.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_scale.c> -o m_scale.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_spacing.c> -o m_spacing.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_spacing.c> -o m_spacing.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_sub.c> -o m_sub.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_sub.c> -o m_sub.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_userptr.c> -o m_userptr.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_userptr.c> -o m_userptr.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_win.c> -o m_win.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_win.c> -o m_win.So
building static menuw library
building shared library libmenuw.so.5
ranlib libmenuw.a
===> lib/ncurses/panelw (all)
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_above.c> -o p_above.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_above.c> -o p_above.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_below.c> -o p_below.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_below.c> -o p_below.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_bottom.c> -o p_bottom.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_bottom.c> -o p_bottom.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_delete.c> -o p_delete.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_delete.c> -o p_delete.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_hidden.c> -o p_hidden.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_hidden.c> -o p_hidden.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_hide.c> -o p_hide.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_hide.c> -o p_hide.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_move.c> -o p_move.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_move.c> -o p_move.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_new.c> -o p_new.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_new.c> -o p_new.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_replace.c> -o p_replace.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_replace.c> -o p_replace.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_show.c> -o p_show.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_show.c> -o p_show.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_top.c> -o p_top.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_top.c> -o p_top.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_update.c> -o p_update.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_update.c> -o p_update.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_user.c> -o p_user.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_user.c> -o p_user.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_win.c> -o p_win.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/p_win.c> -o p_win.So
cc  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/panel.c> -o panel.o
cc -fpic -DPIC  -O2 -pipe  -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. -I/usr/obj<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncursesw> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../ncurses> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/include> -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/ncurses> -Wall -DNDEBUG -DHAVE_CONFIG_H -I<https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel> -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 <https://jenkins.freebsd.org/job/FreeBSD_stable_9/ws/lib/ncurses/panelw/../../../contrib/ncurses/panel/panel.c> -o panel.So
building static panelw library
building shared library libpanelw.so.5
ranlib libpanelw.a
1 error
*** [lib__L] Error code 2
1 error
*** [libraries] Error code 2
1 error
*** [_libraries] Error code 2
1 error
*** [buildworld] Error code 2
1 error
Build step 'Execute shell' marked build as failure


More information about the freebsd-stable mailing list