=> "/opt/pkg/bin/bmake" ["-C", "/data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas", "configure", "BATCH=1", "DEPENDS_TARGET=/nonexistent"] => Checksum BLAKE2s OK for augeas-1.14.1.tar.gz => Checksum SHA512 OK for augeas-1.14.1.tar.gz ===> Installing dependencies for augeas-1.14.1nb2 ========================================================================== The following variables will affect the build process of this package, augeas-1.14.1nb2. Their current value is shown below: * CURSES_DEFAULT = ncurses Based on these variables, the following variables have been set: * CURSES_TYPE = ncurses * TERMCAP_TYPE = curses You may want to abort the process now with CTRL-C and change the value of variables in the first group before continuing. Be sure to run `/opt/pkg/bin/bmake clean' after the changes. ========================================================================== => Tool dependency libtool-base>=2.4.2nb9: found libtool-base-2.4.7nb1 => Tool dependency pkgconf-[0-9]*: found pkgconf-3.0.7 => Tool dependency cwrappers>=20150314: found cwrappers-20220403 => Tool dependency checkperms>=1.1: found checkperms-1.12 => Full dependency libxml2>=2.14.6nb2: found libxml2-2.15.4 => Full dependency readline>=6.0: found readline-8.3nb1 => Full dependency libiconv>=1.9.1: found libiconv-1.19 => Full dependency ncurses>=5.3nb1: found ncurses-6.6 => Full dependency zlib>=1.1.4: found zlib-1.3.1 ===> Overriding tools for augeas-1.14.1nb2 ===> Extracting for augeas-1.14.1nb2 ===> Patching for augeas-1.14.1nb2 => Applying pkgsrc patches for augeas-1.14.1nb2 => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-CVE-2025-2588 => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-CVE-2025-2588 Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-CVE-2025-2588,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Fix a NULL dereference in the regexp parser. CVE-2025-2588. | |parse_regexp() could return NULL while leaving parse->error at REG_NOERROR. |fa_expand_nocase(), fa_restrict_alphabet() and fa_expand_char_ranges() only |test parse->error before dereferencing what came back, so they walk into the |NULL and the process dies. Upstream fixed this at the error label rather |than adding a check to each of the three callers. | |Upstream commit af2aa88ab37fc48167d8c5e43b1770a4ba2ff403 applied verbatim: |the fix itself, the fa.h comment that documents the new return value, and |the regression test. It has not been released; 1.14.1 (2023) is still the |last release. | |_REG_ENOSYS is not in NetBSD's , but augeas is built with |-I ../gnulib/lib and takes from the bundled gnulib copy, which |defines it. Without the src/fa.c hunk below, tests/fatest dies with SIGSEGV. | |https://github.com/hercules-team/augeas/issues/852 | |--- src/fa.c.orig |+++ src/fa.c -------------------------- Patching file src/fa.c using Plan A... Hunk #1 succeeded at 3550. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- | |--- src/fa.h.orig |+++ src/fa.h -------------------------- Patching file src/fa.h using Plan A... Hunk #1 succeeded at 81. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- | |--- tests/fatest.c.orig |+++ tests/fatest.c -------------------------- Patching file tests/fatest.c using Plan A... Hunk #1 succeeded at 589. Hunk #2 succeeded at 608. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-Makefile.in => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-Makefile.in Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-Makefile.in,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Install the lenses. They depend on GNU make otherwise. | |Makefile.am picks the lens lists up with $(wildcard), which is a GNU make |function. bmake leaves it as the literal string, both lists come out empty |and no lens is installed at all, so augtool cannot read any configuration |file. The package has been shipping that way since 2014. | |The lists are globbed in configure instead; see patch-configure. Sent |upstream as well. Patching the generated files rather than Makefile.am and |configure.ac keeps autoreconf out of the build here. | |--- Makefile.in.orig |+++ Makefile.in -------------------------- Patching file Makefile.in using Plan A... Hunk #1 succeeded at 1703. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-configure => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-configure Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-configure,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Two changes to the generated script. | |Glob the lens lists here rather than with $(wildcard) in the makefile; see |patch-Makefile.in. Doing it in configure rather than leaving a bare glob |in the makefile is what makes an out-of-tree build work: the install rule |falls back to $(srcdir)/ only when it can test each name, which it cannot |do with a pattern. Sent upstream as hercules-team/augeas#889. | |Do not use -fexceptions where the personality routine cannot be linked. |The flag makes the compiler emit exception tables, and those name |__gcc_personality_v0. The check upstream makes is a compile and link of a |program whose main() is empty, which settles nothing: an empty main() has |no exception table and so never mentions the routine, the flag is |accepted, and the link of the real program fails afterwards. On OpenBSD |that is what happens; libcompiler_rt.a has the routine but _Unwind_* live |only in libc++abi, which a C program does not link: | | ld: error: undefined symbol: _Unwind_GetLanguageSpecificData | >>> referenced by gcc_personality_v0.c:203 | >>> gcc_personality_v0.o:(__gcc_personality_v0) | >>> in archive /usr/lib/libcompiler_rt.a | |Asking for the routine itself changes nothing where it links, so NetBSD |and Linux are unaffected. Sent upstream as hercules-team/augeas#891, |which changes acinclude.m4; this is the same check written the way the |generated script does it, so that autoreconf is not needed here. | |--- configure.orig |+++ configure -------------------------- Patching file configure using Plan A... Hunk #1 succeeded at 2153. Hunk #2 succeeded at 17844. Hunk #3 succeeded at 52043. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-examples_dump.c => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-examples_dump.c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-examples_dump.c,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Print elapsed time with a format that matches time_t. See |patch-src_augtool.c. | |--- examples/dump.c.orig |+++ examples/dump.c -------------------------- Patching file examples/dump.c using Plan A... Hunk #1 succeeded at 119. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_pg_hba.aug => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_pg_hba.aug Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-lenses_pg_hba.aug,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Add the /usr/local paths, which are missing from three filters. | |/usr/local/pgsql/data is what PostgreSQL itself uses by default, on any |operating system, when built from source with the default prefix. The |filter carries the Red Hat and Debian layouts but not that one. | |Sent upstream as hercules-team/augeas#888; this is that diff. | |--- lenses/pg_hba.aug.orig |+++ lenses/pg_hba.aug -------------------------- Patching file lenses/pg_hba.aug using Plan A... Hunk #1 succeeded at 81. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_postgresql.aug => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_postgresql.aug Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-lenses_postgresql.aug,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Add the /usr/local paths, which are missing from three filters. | |/usr/local/pgsql/data is what PostgreSQL itself uses by default, on any |operating system, when built from source with the default prefix. The |filter carries the Red Hat and Debian layouts but not that one. | |Sent upstream as hercules-team/augeas#888; this is that diff. | |--- lenses/postgresql.aug.orig |+++ lenses/postgresql.aug -------------------------- Patching file lenses/postgresql.aug using Plan A... Hunk #1 succeeded at 70. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_rsyslog.aug => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_rsyslog.aug Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-lenses_rsyslog.aug,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Add the /usr/local paths, which are missing from three filters. | |On the BSDs rsyslog is configured under /usr/local/etc, as software the |system did not ship itself. Dovecot, Nginx, Php, Postfix, Puppet, |Sudoers and Systemd already carry their /usr/local counterpart; Rsyslog |does not. | |Sent upstream as hercules-team/augeas#888; this is that diff. | |--- lenses/rsyslog.aug.orig |+++ lenses/rsyslog.aug -------------------------- Patching file lenses/rsyslog.aug using Plan A... Hunk #1 succeeded at 93. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_shellvars.aug => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_shellvars.aug Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-lenses_shellvars.aug,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Do not read /etc/adduser.conf as a shell script. | |Of the three systems that ship the file, only FreeBSD treats it as one. |OpenBSD's adduser(8) is perl and evals each line, so what it writes is |perl and this lens fails on it outright. Debian's is perl too and allows |whitespace around the equals sign, which this lens does not reject but |reads as a command, so the setting disappears without an error. NetBSD |has no adduser(8); useradd(8) reads /etc/usermgmt.conf instead. | |Simplevars accepts all three; see patch-lenses_simplevars.aug. | |Sent upstream as hercules-team/augeas#893; this is that diff. | |--- lenses/shellvars.aug.orig |+++ lenses/shellvars.aug -------------------------- Patching file lenses/shellvars.aug using Plan A... Hunk #1 succeeded at 305. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_simplevars.aug => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_simplevars.aug Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-lenses_simplevars.aug,v 1.1 2026/09/06 18:44:01 bsiegert Exp $ | |Two entries in this filter. | |Take over /etc/adduser.conf from Shellvars, which cannot read what |OpenBSD's adduser(8) writes and silently mis-reads Debian's; see |patch-lenses_shellvars.aug. Sent upstream as hercules-team/augeas#893. | |Fix the path of OpenBSD's wsconsctl.conf. The entry has read |/etc/wsconsctlctl.conf since it was added upstream in aa3bc264 (2013), so |it has never matched anything. What OpenBSD's /etc/rc applies is |/etc/wsconsctl.conf, one wsconsctl(8) variable assignment per line, which |this lens parses as it stands. NetBSD is unaffected: it has |/etc/wscons.conf, a different file in a different format. Sent upstream |as hercules-team/augeas#887. | |--- lenses/simplevars.aug.orig |+++ lenses/simplevars.aug -------------------------- Patching file lenses/simplevars.aug using Plan A... Hunk #1 succeeded at 44. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_tests_test_simplevars.aug => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-lenses_tests_test_simplevars.aug Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-lenses_tests_test_simplevars.aug,v 1.1 2026/09/06 18:44:02 bsiegert Exp $ | |Test that the perl form of adduser.conf is read; see |patch-lenses_simplevars.aug. | |Sent upstream as hercules-team/augeas#893; this is that diff. | |--- lenses/tests/test_simplevars.aug.orig |+++ lenses/tests/test_simplevars.aug -------------------------- Patching file lenses/tests/test_simplevars.aug using Plan A... Hunk #1 succeeded at 34. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-man_Makefile.in => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-man_Makefile.in Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-man_Makefile.in,v 1.1 2026/09/06 18:44:02 bsiegert Exp $ | |Point the manual pages at the configured lens directory. | |augtool.1, augparse.1, augmatch.1 and augprint.1 all say the lenses live |in /usr/share/augeas/lenses. What the tools search is AUGEAS_LENS_DIR, |which src/internal.h builds from DATADIR, which configure sets from |$(datadir). The text is therefore only right when the package was |configured with --prefix=/usr, and wrong for pkgsrc: /usr/pkg by default, |/opt/pkg on macOS, whatever --prefix says. There are 15 mentions across |the four pages. | |Rewriting the installed pages rather than the .pod sources keeps the |sources readable and needs no extra build step: the substitution has |nothing to do until the paths are known, which is at install time. | |Sent upstream as hercules-team/augeas#892, which adds install-data-hook to |man/Makefile.am. This is the same change in the generated makefile: the |hook itself, the line that calls it from install-data-am, and the .PHONY |entry, all as automake writes them. | |--- man/Makefile.in.orig |+++ man/Makefile.in -------------------------- Patching file man/Makefile.in using Plan A... Hunk #1 succeeded at 1784. Hunk #2 succeeded at 1838. Hunk #3 succeeded at 1854. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-src_augtool.c => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/augeas/patches/patch-src_augtool.c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-src_augtool.c,v 1.1 2026/09/06 18:44:02 bsiegert Exp $ | |Print elapsed time with a format that matches time_t. | |time_t is 64 bits on NetBSD while long is 32 bits on the 32 bit ports, so |"%ld" is the wrong conversion and gcc says so: | | augtool.c:469:21: warning: format '%ld' expects argument of type 'long int', | but argument 2 has type 'time_t {aka long long int}' [-Wformat=] | |Cast rather than assume time_t is long long. Still present upstream, with |no issue or pull request open about it; OpenBSD carries the same fix. | |--- src/augtool.c.orig |+++ src/augtool.c -------------------------- Patching file src/augtool.c using Plan A... Hunk #1 succeeded at 466. done ===> Creating toolchain wrappers for augeas-1.14.1nb2 ===> Configuring for augeas-1.14.1nb2 => Modifying GNU configure scripts to avoid --recheck => Replacing config-guess with pkgsrc versions => Replacing config-sub with pkgsrc versions => Replacing install-sh with pkgsrc version => Adding run-time search paths to pkg-config files. => Checking for portability problems in extracted files configure: WARNING: unrecognized options: --with-libiconv-prefix checking for a BSD-compatible install... /opt/pkg/bin/bsdinstall -c -o pbuild -g pbuild checking whether build environment is sane... yes checking for a race-free mkdir -p... ./build/ac-aux/install-sh -c -d checking for gawk... /usr/bin/nawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking for naturaldocs... no checking for NaturalDocs... no checking whether make supports the include directive... yes (GNU style) checking for x86_64-sun-solaris2.11-gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking whether the compiler is clang... no checking for compiler option needed when checking for declarations... none checking dependency style of gcc... gcc3 checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for wchar.h... yes checking for minix/config.h... no checking for sys/param.h... yes checking for sys/socket.h... yes checking for fnmatch.h... yes checking for getopt.h... yes checking for sys/cdefs.h... no checking for threads.h... yes checking for limits.h... yes checking for langinfo.h... yes checking for xlocale.h... yes checking for sys/mman.h... yes checking for malloc.h... yes checking for selinux/selinux.h... no checking for sys/time.h... yes checking for stdalign.h... yes checking for stdbool.h... yes checking for stdckdint.h... yes checking for sys/random.h... yes checking for sys/wait.h... yes checking for features.h... no checking for crtdefs.h... no checking for wctype.h... yes checking for arpa/inet.h... yes checking for netdb.h... yes checking for netinet/in.h... yes checking for semaphore.h... yes checking for sys/select.h... yes checking for pthread.h... yes checking for sys/ioctl.h... yes checking for sys/uio.h... yes checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for x86_64-sun-solaris2.11-gcc... (cached) gcc checking whether the compiler supports GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to enable C11 features... (cached) none needed checking whether gcc understands -c and -o together... (cached) yes checking whether the compiler is clang... (cached) no checking for compiler option needed when checking for declarations... (cached) none checking dependency style of gcc... (cached) gcc3 checking build system type... x86_64-sun-solaris2.11 checking host system type... x86_64-sun-solaris2.11 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... (cached) /usr/xpg4/bin/grep checking for egrep... (cached) /usr/xpg4/bin/grep -E checking for Minix Amsterdam compiler... no checking for x86_64-sun-solaris2.11-ar... no checking for ar... ar checking for x86_64-sun-solaris2.11-ranlib... no checking for ranlib... ranlib checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for special C compiler options needed for large files... (cached) no checking for _FILE_OFFSET_BITS value needed for large files... (cached) no checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for fgrep... /usr/xpg4/bin/grep -F checking for ld used by gcc... /bin/ld checking if the linker (/bin/ld) is GNU ld... no checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -p checking the name lister (/usr/bin/nm -p) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 786240 checking how to convert x86_64-sun-solaris2.11 file names to x86_64-sun-solaris2.11 format... func_convert_file_noop checking how to convert x86_64-sun-solaris2.11 file names to toolchain format... func_convert_file_noop checking for /bin/ld option to reload object files... -r checking for x86_64-sun-solaris2.11-file... no checking for file... file checking for x86_64-sun-solaris2.11-objdump... no checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for x86_64-sun-solaris2.11-dlltool... no checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for x86_64-sun-solaris2.11-ar... ar checking for archiver @FILE support... no checking for x86_64-sun-solaris2.11-strip... no checking for strip... strip checking for x86_64-sun-solaris2.11-ranlib... ranlib checking command to parse /usr/bin/nm -p output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for x86_64-sun-solaris2.11-mt... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... rm: conftest*: No such file or directory yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/bin/ld -64) supports shared libraries... yes checking whether -lc should be explicitly linked in... rm: conftest*: No such file or directory no checking dynamic linker characteristics... solaris2.11 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for bison... no checking for byacc... no checking for flex... flex checking for lex output file root... lex.yy checking for lex library... none needed checking for library containing yywrap... -ll checking whether yytext is a pointer... yes checking whether __gcc_personality_v0 can be linked... yes checking whether gcc understands -Wall... yes checking whether gcc understands -Wformat... yes checking whether gcc understands -Wformat-security... yes checking whether gcc understands -Wmissing-prototypes... yes checking whether gcc understands -Wnested-externs... yes checking whether gcc understands -Wpointer-arith... yes checking whether gcc understands -Wextra... yes checking whether gcc understands -Wshadow... yes checking whether gcc understands -Wcast-align... yes checking whether gcc understands -Wwrite-strings... yes checking whether gcc understands -Waggregate-return... yes checking whether gcc understands -Wstrict-prototypes... yes checking whether gcc understands -Winline... yes checking whether gcc understands -Wredundant-decls... yes checking whether gcc understands -Wno-sign-compare... yes checking whether gcc understands -fexceptions... yes checking whether gcc understands -fasynchronous-unwind-tables... yes checking what language compliance flags to pass to the C compiler... checking for readline/readline.h... yes checking for readline in -lreadline... yes checking for rl_completion_matches... yes checking for rl_crlf... yes checking for rl_replace_line... yes checking for open_memstream... yes checking for uselocale... yes checking how to pass version script to the linker (/bin/ld -64)... -Wl,-M -Wl, checking for size_t... yes checking for working alloca.h... yes checking for alloca... yes checking for C/C++ restrict keyword... __restrict__ checking whether the preprocessor supports include_next... yes checking whether source code line length is unlimited... yes checking whether uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... yes checking for faccessat... yes checking for realpath... yes checking for lstat... yes checking for _set_invalid_parameter_handler... no checking for fcntl... yes checking for symlink... yes checking for fnmatch... yes checking for mbsrtowcs... yes checking for getdelim... yes checking for getdtablesize... yes checking for getrandom... yes checking for isblank... yes checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for mkstemp... yes checking for nl_langinfo... yes checking for readlink... yes checking for iswctype... yes checking for stpncpy... yes checking for strndup... yes checking for vasnprintf... no checking for snprintf... yes checking for wcrtomb... yes checking for iswcntrl... yes checking for wmempcpy... no checking for ftruncate... yes checking for gettimeofday... yes checking for duplocale... yes checking for newlocale... yes checking for uselocale... (cached) yes checking for freelocale... yes checking for strerror_r... yes checking for __xpg_strerror_r... no checking for pipe... yes checking for pselect... yes checking for pthread_sigmask... yes checking for setenv... yes checking for sleep... yes checking for catgets... yes checking for shutdown... no checking for usleep... yes checking for wctob... yes checking for nl_langinfo and CODESET... yes checking for a traditional french locale... fr_FR.ISO8859-1 checking whether malloc is ptrdiff_t safe... yes checking whether malloc, realloc, calloc set errno on failure... no checking whether lstat correctly handles trailing slash... yes checking whether // is distinct from /... no checking whether realpath works... yes checking for getcwd... yes checking for complete errno.h... yes checking whether ctype.h defines __header_inline... no checking for working fcntl.h... no (bad O_NOATIME) checking for pid_t... yes checking for mode_t... yes checking for mbstate_t... yes checking whether stat file-mode macros are broken... no checking for nlink_t... yes checking for gcc options needed to detect all undeclared functions... none needed checking whether getdelim is declared... yes checking whether getdtablesize is declared... yes checking whether getline is declared... yes checking for getopt.h... (cached) yes checking for getopt_long_only... yes checking whether getopt is POSIX compatible... yes checking for working GNU getopt function... no checking for pthread.h... (cached) yes checking for pthread_kill in -lpthread... yes checking whether POSIX threads API is available... yes checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes checking whether setlocale (category, NULL) is multithread-safe... yes checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... no checking for wint_t... yes checking whether wint_t is large enough... yes checking whether the compiler produces multi-arch binaries... no checking whether stdint.h conforms to C99... no checking for sys/inttypes.h... yes checking for sys/bitypes.h... no checking for bit size of ptrdiff_t... 64 checking for bit size of size_t... 64 checking for bit size of sig_atomic_t... 32 checking for bit size of wchar_t... 32 checking for bit size of wint_t... 32 checking whether sig_atomic_t is signed... yes checking whether wchar_t is signed... yes checking whether wint_t is signed... yes checking for ptrdiff_t integer literal suffix... l checking for size_t integer literal suffix... ul checking for sig_atomic_t integer literal suffix... checking for wchar_t integer literal suffix... checking for wint_t integer literal suffix... checking whether langinfo.h defines CODESET... yes checking whether langinfo.h defines T_FMT_AMPM... yes checking whether langinfo.h defines ALTMON_1... no checking whether langinfo.h defines ERA... yes checking whether langinfo.h defines YESEXPR... yes checking for wchar_t... yes checking for good max_align_t... yes checking whether NULL can be used in arbitrary expressions... yes checking whether locale.h defines locale_t... yes checking whether locale.h conforms to POSIX:2001... yes checking whether struct lconv is properly defined... yes checking whether imported symbols can be declared weak... yes checking for multithread API to use... posix checking whether malloc (0) returns nonnull... yes checking for a traditional japanese locale... none checking for a french Unicode locale... fr_FR.UTF-8 checking for a transitional chinese locale... zh_CN.GB18030 checking for inline... inline checking for mmap... yes checking for MAP_ANONYMOUS... yes checking whether memchr works... yes checking whether defines MIN and MAX... no checking whether defines MIN and MAX... no checking for O_CLOEXEC... yes checking for promoted mode_t type... mode_t checking whether alarm is declared... yes checking for library containing setfilecon... no checking whether fcloseall is declared... yes checking which flavor of printf attribute matches inttypes macros... system checking whether ecvt is declared... yes checking whether fcvt is declared... yes checking whether gcvt is declared... yes checking whether stpncpy is declared... yes checking whether strndup is declared... yes checking whether strnlen is declared... yes checking whether strstr works... yes checking for struct timespec in ... yes checking for TIME_UTC in ... yes checking whether execvpe is declared... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking where to find the exponent in a 'double'... word 1 bit 20 checking whether snprintf returns a byte count as in C99... yes checking whether snprintf truncates the result as in C99... yes checking for snprintf... (cached) yes checking for strnlen... yes checking for wcslen... yes checking for wcsnlen... yes checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... no checking whether wcsdup is declared... yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking for C compiler option to allow warnings... -Wno-error checking for C++ compiler option to allow warnings... none checking whether is self-contained... yes checking for shutdown... (cached) no checking for struct sockaddr_storage... yes checking for sa_family_t... yes checking for struct sockaddr_storage.ss_family... yes checking if environ is properly declared... no checking whether getcwd (NULL, 0) allocates memory for result... yes checking for getcwd with POSIX signature... yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking whether INT32_MAX < INTMAX_MAX... yes checking whether INT64_MAX == LONG_MAX... yes checking whether UINT32_MAX < UINTMAX_MAX... yes checking whether UINT64_MAX == ULONG_MAX... yes checking for LC_MESSAGES... yes checking whether uselocale works... yes checking for fake locale system (OpenBSD)... no checking for Solaris 11.4 locale system... no checking for getlocalename_l... yes checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyPreferredLanguages... no checking for library needed for semaphore functions... none checking whether strerror(0) succeeds... yes checking for strerror_r with POSIX signature... yes checking whether strerror_r works... no checking whether strerror_r is declared... yes checking whether is self-contained... yes checking for pthread_t... yes checking for pthread_spinlock_t... yes checking for PTHREAD_CREATE_DETACHED... yes checking for PTHREAD_MUTEX_RECURSIVE... yes checking for PTHREAD_MUTEX_ROBUST... yes checking for PTHREAD_PROCESS_SHARED... yes checking for sigset_t... yes checking for sched.h... yes checking for struct sched_param... yes checking for library containing setsockopt... -lsocket checking whether setenv is declared... yes checking for search.h... yes checking for tsearch... yes checking for uid_t in sys/types.h... yes checking for volatile sig_atomic_t... yes checking for sighandler_t... no checking whether strerror_r returns char *... no checking whether declares ioctl... yes checking whether unsetenv is declared... yes checking for alloca as a compiler built-in... yes checking for argz.h... no checking for error_t... no checking for argz_replace... no checking for static_assert... yes, an macro checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... yes checking for __builtin_expect... yes checking for library containing clock_gettime... none required checking for clock_getres... yes checking for clock_gettime... yes checking for clock_settime... yes checking whether // is distinct from /... (cached) no checking whether dup2 works... yes checking whether fcntl handles F_DUPFD correctly... yes checking whether fcntl understands F_DUPFD_CLOEXEC... yes checking for flexible array member... yes checking whether conversion from 'int' to 'long double' works... yes checking for working POSIX fnmatch... yes checking whether free is known to preserve errno... yes checking for working getdelim function... yes checking whether getdtablesize works... yes checking for getline... yes checking for working getline function... yes checking whether getrandom is compatible with its GNU+BSD signature... yes checking whether the compiler supports the __inline keyword... yes checking for pthread_rwlock_t... yes checking whether pthread_rwlock_rdlock prefers a writer to a reader... yes checking whether mbrtowc handles incomplete characters... yes checking whether mbrtowc works as well as mbtowc... yes checking whether mbrtowc handles a NULL pwc argument... yes checking whether mbrtowc handles a NULL string argument... yes checking whether mbrtowc has a correct return value... yes checking whether mbrtowc returns 0 when parsing a NUL character... yes checking whether mbrtowc stores incomplete characters... no checking whether mbrtowc works on empty input... yes checking whether the C locale is free of encoding errors... yes checking whether mbrtowc handles incomplete characters... (cached) yes checking whether mbrtowc works as well as mbtowc... (cached) yes checking whether mbrtowc handles incomplete characters... (cached) yes checking whether mbrtowc works as well as mbtowc... (cached) yes checking whether mbsrtowcs works... yes checking for mbtowc... yes checking for mempcpy... no checking whether mkdir handles trailing slash... yes checking whether mkdir handles trailing dot... yes checking for working mkstemp... yes checking whether YESEXPR works... yes checking whether the -Werror option is usable... yes checking for simple visibility declarations... yes checking whether open recognizes a trailing slash... yes checking for rawmemchr... no checking whether readlink signature is correct... yes checking whether readlink handles trailing slash correctly... yes checking whether readlink truncates results correctly... yes checking whether realloc (0, 0) returns nonnull... yes checking for reallocarray... yes checking for working re_compile_pattern... no checking for libintl.h... yes checking whether isblank is declared... yes checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes checking whether setlocale (category, NULL) is multithread-safe... (cached) yes checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for ssize_t... yes checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... yes checking whether struct stat.st_atim is of type struct timespec... yes checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for alignas and alignof... yes, macros checking for bool, true, false... no checking for stpcpy... yes checking for working stpncpy... yes checking for strchrnul... yes checking whether strchrnul works... yes checking for working strndup... yes checking for working strnlen... yes checking whether strstr works in linear time... no checking whether strstr works... (cached) yes checking for variable-length arrays... yes checking for ptrdiff_t... yes checking for vasprintf... yes checking whether mbrtowc handles incomplete characters... (cached) yes checking whether mbrtowc works as well as mbtowc... (cached) yes checking whether wcrtomb works in the C locale... yes checking whether wcrtomb return value is correct... yes checking for wmemchr... yes checking for stdint.h... (cached) yes checking for a traditional french locale... (cached) fr_FR.ISO8859-1 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional french locale... (cached) fr_FR.ISO8859-1 checking for a turkish Unicode locale... none checking whether fdopen sets errno... yes checking for getpagesize... yes checking whether getpagesize is declared... yes checking for gettimeofday with POSIX signature... yes checking for library containing inet_pton... none required checking whether inet_pton is declared... yes checking whether byte ordering is bigendian... no checking for ioctl... yes checking for ioctl with POSIX signature... yes checking for a traditional french locale... (cached) fr_FR.ISO8859-1 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) none checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional french locale... (cached) fr_FR.ISO8859-1 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) none checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking for library containing nanosleep... none required checking for working nanosleep... yes checking whether is self-contained... yes checking for a traditional french locale... (cached) fr_FR.ISO8859-1 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking whether signature of pselect conforms to POSIX... yes checking whether pselect detects invalid fds... yes checking whether pthread_create exists as a global function... yes checking whether pthread_sigmask is a macro... no checking whether pthread_sigmask works without -lpthread... yes checking whether pthread_sigmask returns error numbers... yes checking whether pthread_sigmask unblocks signals correctly... guessing yes checking for putenv compatible with GNU and SVID... yes checking for raise... yes checking for sigprocmask... yes checking whether sched_yield is declared... yes checking whether select supports a 0 argument... yes checking whether select detects invalid fds... yes checking whether setenv validates arguments... yes checking whether setlocale supports the C locale... yes checking for a traditional french locale... (cached) fr_FR.ISO8859-1 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) none checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking for sigprocmask... (cached) yes checking whether sleep is declared... yes checking for working sleep... yes checking for socklen_t... yes checking for working strerror function... yes checking whether symlink handles trailing slash correctly... yes checking for pthread_atfork... yes checking for sys/single_threaded.h... no checking for unsetenv... yes checking for unsetenv() return type... int checking whether unsetenv obeys POSIX... no checking for useconds_t... yes checking whether usleep allows large arguments... yes checking for a traditional french locale... (cached) fr_FR.ISO8859-1 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) none checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking whether wctob works... yes checking whether wctob is declared... yes checking if we should run the GNUlib tests... yes checking pkg-config is at least version 0.9.0... yes checking for LIBXML... yes checking for strerror_r... (cached) yes checking for fsync... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating gnulib/lib/Makefile config.status: creating gnulib/tests/Makefile config.status: creating src/Makefile config.status: creating man/Makefile config.status: creating tests/Makefile config.status: creating examples/Makefile config.status: creating doc/Makefile config.status: creating doc/naturaldocs/Makefile config.status: creating augeas.pc config.status: creating augeas.spec config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands rm: libtoolT: No such file or directory configure: WARNING: unrecognized options: --with-libiconv-prefix => Modifying libtool scripts to use pkgsrc libtool => Modifying libtool scripts to use pkgsrc depcomp WARNING: *** Please consider adding c++ to USE_LANGUAGES in the package Makefile.