> On Mar 11, 2017, at 15:51, Roberto Rodriguez Jr <rob.rodz.jr9_at_gmail.com> wrote: > > I figured the script command... here is the new error r315090 > > --- .depend --- > echo setkey.full: /usr/obj/usr/src/tmp/usr/lib/libc.a > /usr/obj/usr/src/tmp/usr/lib/libl.a > /usr/obj/usr/src/tmp/usr/lib/liby.a > /usr/obj/usr/src/tmp/usr/lib/libipsec.a >> .depend > --- setkey.o --- > /usr/local/libexec/ccache/cc -O2 -pipe -march=btver2 > -I/usr/src/sbin/setkey -I/usr/src/lib/libipsec -I/usr/src/lib/libipsec > -I/usr/src/sys/netipsec -DIPSEC_DEBUG -DYY_NO_UNPUT -DINET6 -I. -g -MD > -MF.depend.setkey.o -MTsetkey.o -std=gnu99 -fstack-protector-strong > -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body > -Wno-string-plus-int -Wno-unused-const-variable > -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality > -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef > -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter > -Wno-parentheses -Qunused-arguments -c /usr/src/sbin/setkey/setkey.c > -o setkey.o > --- all_subdir_lib --- > --- jemalloc_nstime.po --- > /usr/local/libexec/ccache/cc -pg -O2 -pipe -march=btver2 > -I/usr/src/lib/libc/include -I/usr/src/include > -I/usr/src/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE > -I/usr/src/contrib/gdtoa -I/usr/src/contrib/libc-vis -DINET6 > -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE > -DPOSIX_MISTAKE -I/usr/src/lib/libmd > -I/usr/src/contrib/jemalloc/include -I/usr/src/contrib/tzcode/stdtime > -I/usr/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES > -DPORTMAP -DDES_BUILTIN -I/usr/src/lib/libc/rpc -DWANT_HYPERV -DYP > -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.jemalloc_nstime.po > -MTjemalloc_nstime.po -std=gnu99 -fstack-protector-strong > -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized > -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int > -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value > -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion > -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum > -Wno-knr-promoted-parameter -Qunused-arguments > -I/usr/src/lib/libutil -I/usr/src/lib/msun/amd64 > -I/usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c jemalloc_nstime.c > -o jemalloc_nstime.po > --- all_subdir_rescue --- > --- suffix.o --- > /usr/local/libexec/ccache/cc -O2 -pipe -DHAVE_CONFIG_H > -I/usr/src/usr.bin/xz/../../lib/liblzma > -I/usr/src/usr.bin/xz/../../contrib/xz/src/common -march=btver2 > -DRESCUE -MD -MF.depend.suffix.o -MTsuffix.o -std=gnu99 > -fstack-protector-strong -Wsystem-headers -Werror -Wall > -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes > -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized > -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int > -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value > -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion > -Wno-unused-local-typedef -Qunused-arguments -c > /usr/src/usr.bin/xz/../../contrib/xz/src/xz/suffix.c -o suffix.o > --- all_subdir_sbin --- > /usr/src/sbin/setkey/setkey.c:154:15: error: use of undeclared > identifier 'IPSEC_POLICYSCOPE_GLOBAL' > f_scope |= IPSEC_POLICYSCOPE_GLOBAL; > ^ > /usr/src/sbin/setkey/setkey.c:157:15: error: use of undeclared > identifier 'IPSEC_POLICYSCOPE_IFNET' > f_scope |= IPSEC_POLICYSCOPE_IFNET; > ^ Some new symbols were added to sys/netipsec/… and unfortunately the system headers don’t provide that symbol. This should fix the issue — I’ll run the change through make tinderbox before committing, then analyze the .depend files, just to make sure it's bootstrapping properly. Thanks! -Ngie $ svn diff Makefile Index: Makefile =================================================================== --- Makefile (revision 315094) +++ Makefile (working copy) _at__at_ -46,7 +46,7 _at__at_ # ipsec_strerror.c is for avoiding shlib reference to non-exported function. .PATH: ${SRCTOP}/lib/libipsec ${SRCTOP}/sys/netipsec SRCS+= pfkey.c pfkey_dump.c key_debug.c ipsec_strerror.c -CFLAGS+= -I${SRCTOP}/sys/netipsec +CFLAGS+= -I${SRCTOP}/sys SRCS+= y.tab.h y.tab.h: parse.y
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:10 UTC