pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/mk-configure



Module Name:    pkgsrc
Committed By:   cheusov
Date:           Thu Nov 26 19:47:54 UTC 2020

Modified Files:
        pkgsrc/devel/mk-configure: Makefile PLIST distinfo

Log Message:
Update to 0.35.0

  Add the following new features: arc4random, bswap, dprintf, efun,
  errc, fparseln, fts, posix_getopt, raise_default_signals,
  reallocarray, strsep and vis.
  See mk-configure.7 for details.

  Fixes:
    * mkc_check_decl: fix "prototype" mode. Extraction of function name
      was incorrect.  Add one more regression test for this case in
      tests/os_NetBSD.
    * Avoid multiple repetition of MKC_COMMON_DEFINES in CPPFLAGS
    * Fix target "depend" that failed if SRCS contains full path to
      source code.

  Move -Wreturn-type from CFLAGS.warns.{clang,gcc}.2 to
  CFLAGS.warns.{clang,gcc}.1 and make it an error for C++

  CC_TYPE and CXX_TYPE are correctly set if MKC_CHECK_CUSTOM is set.

  Use .error bmake command for checking MKC_REQD.  Also, move
  appropriate check to mkc_imp.preinit.mk, so it is checked in the
  very beginning.  Documentation and error message are slightly
  updated.

  Rename variable DISTCLEANFILES to CLEANDIRFILES, DISTCLEANFILES is
  considered deprecated.

  Rename variable DISTCLEANDIRS to CLEANDIRDIRS, DISTCLEANDIRS is
  considered deprecated.

  Add support for latest Intel C/C++ compiler.  We have to always add
  -we10006 option to it in order it fail when invalid option is used.

  Adapt some features for using functions implementation from
  libnbcompat and libbsd libraries.

  Use .depend_${.CURDIR:T} instead .depend to support MAKEOBJDIR.

  New tests and examples.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/devel/mk-configure/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/mk-configure/PLIST
cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/mk-configure/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/mk-configure/Makefile
diff -u pkgsrc/devel/mk-configure/Makefile:1.34 pkgsrc/devel/mk-configure/Makefile:1.35
--- pkgsrc/devel/mk-configure/Makefile:1.34     Thu May 14 17:45:44 2020
+++ pkgsrc/devel/mk-configure/Makefile  Thu Nov 26 19:47:54 2020
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.34 2020/05/14 17:45:44 cheusov Exp $
+# $NetBSD: Makefile,v 1.35 2020/11/26 19:47:54 cheusov Exp $
 #
 
-DISTNAME=      mk-configure-0.34.2
+DISTNAME=      mk-configure-0.35.0
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=mk-configure/}
 

Index: pkgsrc/devel/mk-configure/PLIST
diff -u pkgsrc/devel/mk-configure/PLIST:1.17 pkgsrc/devel/mk-configure/PLIST:1.18
--- pkgsrc/devel/mk-configure/PLIST:1.17        Mon Mar 30 14:10:55 2020
+++ pkgsrc/devel/mk-configure/PLIST     Thu Nov 26 19:47:54 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2020/03/30 14:10:55 cheusov Exp $
+@comment $NetBSD: PLIST,v 1.18 2020/11/26 19:47:54 cheusov Exp $
 bin/mkc_check_compiler
 bin/mkc_check_custom
 bin/mkc_check_decl
@@ -34,25 +34,197 @@ share/doc/mk-configure/NOTES
 share/doc/mk-configure/README.md
 share/doc/mk-configure/TODO
 share/doc/mk-configure/presentation.pdf
-share/examples/mk-configure/Makefile
 share/examples/mk-configure/Makefile.inc
+share/examples/mk-configure/RBTREE/Makefile
+share/examples/mk-configure/RBTREE/expect.out
+share/examples/mk-configure/RBTREE/hello_RBTREE.c
+share/examples/mk-configure/RBTREE/input.in
+share/examples/mk-configure/RBTREE/test.mk
 share/examples/mk-configure/README
+share/examples/mk-configure/SLIST/Makefile
+share/examples/mk-configure/SLIST/expect.out
+share/examples/mk-configure/SLIST/hello_SLIST.c
+share/examples/mk-configure/SLIST/input.in
+share/examples/mk-configure/SLIST/test.mk
+share/examples/mk-configure/arc4random/Makefile
+share/examples/mk-configure/arc4random/expect.out
+share/examples/mk-configure/arc4random/prog.c
+share/examples/mk-configure/arc4random/test.mk
+share/examples/mk-configure/autoconf/Makefile
+share/examples/mk-configure/autoconf/expect.out
+share/examples/mk-configure/autoconf/proj/AUTHORS
+share/examples/mk-configure/autoconf/proj/COPYING
+share/examples/mk-configure/autoconf/proj/ChangeLog
+share/examples/mk-configure/autoconf/proj/Makefile.in
+share/examples/mk-configure/autoconf/proj/NEWS
+share/examples/mk-configure/autoconf/proj/README
+share/examples/mk-configure/autoconf/proj/configure.ac
+share/examples/mk-configure/autoconf/proj/hello_autoconf.c
+share/examples/mk-configure/autoconf/test.mk
+share/examples/mk-configure/autotools/Makefile
+share/examples/mk-configure/autotools/expect.out
+share/examples/mk-configure/autotools/proj/AUTHORS
+share/examples/mk-configure/autotools/proj/COPYING
+share/examples/mk-configure/autotools/proj/ChangeLog
+share/examples/mk-configure/autotools/proj/Makefile.am
+share/examples/mk-configure/autotools/proj/NEWS
+share/examples/mk-configure/autotools/proj/README
+share/examples/mk-configure/autotools/proj/configure.ac
+share/examples/mk-configure/autotools/proj/main.c
+share/examples/mk-configure/autotools/test.mk
+share/examples/mk-configure/bswap/Makefile
+share/examples/mk-configure/bswap/expect.out
+share/examples/mk-configure/bswap/prog.c
+share/examples/mk-configure/bswap/test.mk
+share/examples/mk-configure/calc/Makefile
+share/examples/mk-configure/calc/calc.y
+share/examples/mk-configure/calc/expect.out
+share/examples/mk-configure/calc/input.txt
+share/examples/mk-configure/calc/test.mk
+share/examples/mk-configure/calc2/Makefile
+share/examples/mk-configure/calc2/expect.out
+share/examples/mk-configure/calc2/expressions.txt
+share/examples/mk-configure/calc2/lex.l
+share/examples/mk-configure/calc2/parser.y
+share/examples/mk-configure/calc2/test.mk
 share/examples/mk-configure/check_compiler_opts/Makefile
 share/examples/mk-configure/check_compiler_opts/expect.out
 share/examples/mk-configure/check_compiler_opts/hello_world.c
 share/examples/mk-configure/check_compiler_opts/test.mk
+share/examples/mk-configure/compatlib/Makefile
+share/examples/mk-configure/compatlib/Makefile.inc
+share/examples/mk-configure/compatlib/expect.out
+share/examples/mk-configure/compatlib/libcmpt/Makefile
+share/examples/mk-configure/compatlib/prog1/Makefile
+share/examples/mk-configure/compatlib/prog1/prog1.c
+share/examples/mk-configure/compatlib/prog2/Makefile
+share/examples/mk-configure/compatlib/prog2/prog2.c
+share/examples/mk-configure/compatlib/test.mk
+share/examples/mk-configure/compilers/Makefile
+share/examples/mk-configure/compilers/compiler_test.c
+share/examples/mk-configure/compilers/expect.out
+share/examples/mk-configure/compilers/test.mk
+share/examples/mk-configure/customtests/Makefile
+share/examples/mk-configure/customtests/custom_tests/alloca_in_alloca_h.c
+share/examples/mk-configure/customtests/custom_tests/alloca_in_stdlib_h.c
+share/examples/mk-configure/customtests/custom_tests/cxx_with_templates.cc
+share/examples/mk-configure/customtests/custom_tests/shtest
+share/examples/mk-configure/customtests/custom_tests/true_is_available
+share/examples/mk-configure/customtests/expect.out
+share/examples/mk-configure/customtests/hello_customtests.c
+share/examples/mk-configure/customtests/test.mk
+share/examples/mk-configure/customtests2/Makefile
+share/examples/mk-configure/customtests2/expect.out
+share/examples/mk-configure/customtests2/hello_customtests2.c
+share/examples/mk-configure/customtests2/test.mk
+share/examples/mk-configure/cxx/Makefile
+share/examples/mk-configure/cxx/expect.out
+share/examples/mk-configure/cxx/five.c
+share/examples/mk-configure/cxx/five.h
+share/examples/mk-configure/cxx/hello_msg.cc
+share/examples/mk-configure/cxx/hello_msg.h
+share/examples/mk-configure/cxx/main.cc
+share/examples/mk-configure/cxx/seven.c
+share/examples/mk-configure/cxx/seven.h
+share/examples/mk-configure/cxx/test.mk
+share/examples/mk-configure/cxxlib/Makefile
+share/examples/mk-configure/cxxlib/Makefile.inc
+share/examples/mk-configure/cxxlib/cxxapp/Makefile
+share/examples/mk-configure/cxxlib/cxxapp/cxxapp.cc
+share/examples/mk-configure/cxxlib/cxxlib/Makefile
+share/examples/mk-configure/cxxlib/cxxlib/dummy.c
+share/examples/mk-configure/cxxlib/cxxlib/hello_msg1.cpp
+share/examples/mk-configure/cxxlib/cxxlib/hello_msg2.cpp
+share/examples/mk-configure/cxxlib/cxxlib/include/hello_msg.h
+share/examples/mk-configure/cxxlib/cxxlib/include/impl/hello_msg1.h
+share/examples/mk-configure/cxxlib/cxxlib/include/impl/hello_msg2.h
+share/examples/mk-configure/cxxlib/cxxlib/linkme.mk
+share/examples/mk-configure/cxxlib/cxxlib2/Makefile
+share/examples/mk-configure/cxxlib/cxxlib2/hello_msg3.cxx
+share/examples/mk-configure/cxxlib/cxxlib2/include/hello_msg2.h
+share/examples/mk-configure/cxxlib/cxxlib2/linkme.mk
+share/examples/mk-configure/cxxlib/expect.out
+share/examples/mk-configure/cxxlib/test.mk
+share/examples/mk-configure/dictd/Makefile
+share/examples/mk-configure/dictd/Makefile.inc
+share/examples/mk-configure/dictd/dict/Makefile
+share/examples/mk-configure/dictd/dict/dict.1
+share/examples/mk-configure/dictd/dict/dict.c
+share/examples/mk-configure/dictd/dictd/Makefile
+share/examples/mk-configure/dictd/dictd/dictd.8
+share/examples/mk-configure/dictd/dictd/dictd.c
+share/examples/mk-configure/dictd/dictfmt/Makefile
+share/examples/mk-configure/dictd/dictfmt/dictfmt.1
+share/examples/mk-configure/dictd/dictfmt/dictfmt.c
+share/examples/mk-configure/dictd/dictzip/Makefile
+share/examples/mk-configure/dictd/dictzip/dictzip.1
+share/examples/mk-configure/dictd/dictzip/dictzip.c
+share/examples/mk-configure/dictd/doc/Makefile
+share/examples/mk-configure/dictd/doc/doc.txt
+share/examples/mk-configure/dictd/expect.out
+share/examples/mk-configure/dictd/libcommon/Makefile
+share/examples/mk-configure/dictd/libcommon/iswalnum.c
+share/examples/mk-configure/dictd/libcommon/str.c
+share/examples/mk-configure/dictd/libdz/Makefile
+share/examples/mk-configure/dictd/libdz/dz.c
+share/examples/mk-configure/dictd/libdz/export.sym
+share/examples/mk-configure/dictd/libmaa/Makefile
+share/examples/mk-configure/dictd/libmaa/export.sym
+share/examples/mk-configure/dictd/libmaa/log.c
+share/examples/mk-configure/dictd/libmaa/prime.c
+share/examples/mk-configure/dictd/libmaa/set.c
+share/examples/mk-configure/dictd/test.mk
+share/examples/mk-configure/dprintf/Makefile
+share/examples/mk-configure/dprintf/expect.out
+share/examples/mk-configure/dprintf/prog.c
+share/examples/mk-configure/dprintf/test.mk
+share/examples/mk-configure/efun/Makefile
+share/examples/mk-configure/efun/expect.out
+share/examples/mk-configure/efun/prog.c
+share/examples/mk-configure/efun/test.mk
+share/examples/mk-configure/errc/Makefile
+share/examples/mk-configure/errc/expect.out
+share/examples/mk-configure/errc/prog.c
+share/examples/mk-configure/errc/test.mk
+share/examples/mk-configure/errwarn/Makefile
+share/examples/mk-configure/errwarn/Makefile.inc
+share/examples/mk-configure/errwarn/expect.out
+share/examples/mk-configure/errwarn/hello.c
+share/examples/mk-configure/errwarn/test.mk
+share/examples/mk-configure/fgetln/Makefile
+share/examples/mk-configure/fgetln/expect.out
+share/examples/mk-configure/fgetln/hello.c
+share/examples/mk-configure/fgetln/test.mk
+share/examples/mk-configure/files/DEBIAN/control
+share/examples/mk-configure/files/Makefile
+share/examples/mk-configure/files/expect.NetBSD.out
+share/examples/mk-configure/files/expect.out
+share/examples/mk-configure/files/shell_func.7
+share/examples/mk-configure/files/shell_func.texinfo
+share/examples/mk-configure/files/shell_func1
+share/examples/mk-configure/files/shell_func2
+share/examples/mk-configure/files/shell_func3
+share/examples/mk-configure/files/test.mk
+share/examples/mk-configure/files2/Makefile
+share/examples/mk-configure/files2/expect.out
+share/examples/mk-configure/files2/hello_world.1
+share/examples/mk-configure/files2/hello_world2
+share/examples/mk-configure/files2/hello_world3.in
+share/examples/mk-configure/files2/main.c
+share/examples/mk-configure/files2/more_scripts/script1
+share/examples/mk-configure/files2/more_scripts/script2
+share/examples/mk-configure/files2/more_scripts/script3
+share/examples/mk-configure/files2/msg.c
+share/examples/mk-configure/files2/test.mk
+share/examples/mk-configure/fparseln/Makefile
+share/examples/mk-configure/fparseln/expect.out
+share/examples/mk-configure/fparseln/input.txt
+share/examples/mk-configure/fparseln/prog.c
+share/examples/mk-configure/fparseln/test.mk
 share/examples/mk-configure/fts/Makefile
-share/examples/mk-configure/fts/fts.c
-share/examples/mk-configure/hello_RBTREE/Makefile
-share/examples/mk-configure/hello_RBTREE/expect.out
-share/examples/mk-configure/hello_RBTREE/hello_RBTREE.c
-share/examples/mk-configure/hello_RBTREE/input.in
-share/examples/mk-configure/hello_RBTREE/test.mk
-share/examples/mk-configure/hello_SLIST/Makefile
-share/examples/mk-configure/hello_SLIST/expect.out
-share/examples/mk-configure/hello_SLIST/hello_SLIST.c
-share/examples/mk-configure/hello_SLIST/input.in
-share/examples/mk-configure/hello_SLIST/test.mk
+share/examples/mk-configure/fts/expect.out
+share/examples/mk-configure/fts/prog.c
+share/examples/mk-configure/fts/test.mk
 share/examples/mk-configure/hello_TARGETS/Makefile
 share/examples/mk-configure/hello_TARGETS/Makefile.inc
 share/examples/mk-configure/hello_TARGETS/expect.out
@@ -63,170 +235,10 @@ share/examples/mk-configure/hello_TARGET
 share/examples/mk-configure/hello_TARGETS/hello2/hello2.c
 share/examples/mk-configure/hello_TARGETS/hello2/hello2.pod
 share/examples/mk-configure/hello_TARGETS/test.mk
-share/examples/mk-configure/hello_autoconf/Makefile
-share/examples/mk-configure/hello_autoconf/expect.out
-share/examples/mk-configure/hello_autoconf/proj/AUTHORS
-share/examples/mk-configure/hello_autoconf/proj/COPYING
-share/examples/mk-configure/hello_autoconf/proj/ChangeLog
-share/examples/mk-configure/hello_autoconf/proj/Makefile.in
-share/examples/mk-configure/hello_autoconf/proj/NEWS
-share/examples/mk-configure/hello_autoconf/proj/README
-share/examples/mk-configure/hello_autoconf/proj/configure.ac
-share/examples/mk-configure/hello_autoconf/proj/hello_autoconf.c
-share/examples/mk-configure/hello_autoconf/test.mk
-share/examples/mk-configure/hello_autotools/Makefile
-share/examples/mk-configure/hello_autotools/expect.out
-share/examples/mk-configure/hello_autotools/proj/AUTHORS
-share/examples/mk-configure/hello_autotools/proj/COPYING
-share/examples/mk-configure/hello_autotools/proj/ChangeLog
-share/examples/mk-configure/hello_autotools/proj/Makefile.am
-share/examples/mk-configure/hello_autotools/proj/NEWS
-share/examples/mk-configure/hello_autotools/proj/README
-share/examples/mk-configure/hello_autotools/proj/configure.ac
-share/examples/mk-configure/hello_autotools/proj/main.c
-share/examples/mk-configure/hello_autotools/test.mk
-share/examples/mk-configure/hello_calc2/Makefile
-share/examples/mk-configure/hello_calc2/expect.out
-share/examples/mk-configure/hello_calc2/expressions.txt
-share/examples/mk-configure/hello_calc2/lex.l
-share/examples/mk-configure/hello_calc2/parser.y
-share/examples/mk-configure/hello_calc2/test.mk
-share/examples/mk-configure/hello_compatlib/Makefile
-share/examples/mk-configure/hello_compatlib/Makefile.inc
-share/examples/mk-configure/hello_compatlib/expect.out
-share/examples/mk-configure/hello_compatlib/libcmpt/Makefile
-share/examples/mk-configure/hello_compatlib/prog1/Makefile
-share/examples/mk-configure/hello_compatlib/prog1/prog1.c
-share/examples/mk-configure/hello_compatlib/prog2/Makefile
-share/examples/mk-configure/hello_compatlib/prog2/prog2.c
-share/examples/mk-configure/hello_compatlib/test.mk
-share/examples/mk-configure/hello_compilers/Makefile
-share/examples/mk-configure/hello_compilers/compiler_test.c
-share/examples/mk-configure/hello_compilers/expect.out
-share/examples/mk-configure/hello_compilers/test.mk
-share/examples/mk-configure/hello_customtests/Makefile
-share/examples/mk-configure/hello_customtests/custom_tests/alloca_in_alloca_h.c
-share/examples/mk-configure/hello_customtests/custom_tests/alloca_in_stdlib_h.c
-share/examples/mk-configure/hello_customtests/custom_tests/cxx_with_templates.cc
-share/examples/mk-configure/hello_customtests/custom_tests/shtest
-share/examples/mk-configure/hello_customtests/custom_tests/true_is_available
-share/examples/mk-configure/hello_customtests/expect.out
-share/examples/mk-configure/hello_customtests/hello_customtests.c
-share/examples/mk-configure/hello_customtests/test.mk
-share/examples/mk-configure/hello_customtests2/Makefile
-share/examples/mk-configure/hello_customtests2/expect.out
-share/examples/mk-configure/hello_customtests2/hello_customtests2.c
-share/examples/mk-configure/hello_customtests2/test.mk
-share/examples/mk-configure/hello_cxx/Makefile
-share/examples/mk-configure/hello_cxx/expect.out
-share/examples/mk-configure/hello_cxx/five.c
-share/examples/mk-configure/hello_cxx/five.h
-share/examples/mk-configure/hello_cxx/hello_msg.cc
-share/examples/mk-configure/hello_cxx/hello_msg.h
-share/examples/mk-configure/hello_cxx/main.cc
-share/examples/mk-configure/hello_cxx/seven.c
-share/examples/mk-configure/hello_cxx/seven.h
-share/examples/mk-configure/hello_cxx/test.mk
-share/examples/mk-configure/hello_cxxlib/Makefile
-share/examples/mk-configure/hello_cxxlib/Makefile.inc
-share/examples/mk-configure/hello_cxxlib/cxxapp/Makefile
-share/examples/mk-configure/hello_cxxlib/cxxapp/cxxapp.cc
-share/examples/mk-configure/hello_cxxlib/cxxlib/Makefile
-share/examples/mk-configure/hello_cxxlib/cxxlib/dummy.c
-share/examples/mk-configure/hello_cxxlib/cxxlib/hello_msg1.cpp
-share/examples/mk-configure/hello_cxxlib/cxxlib/hello_msg2.cpp
-share/examples/mk-configure/hello_cxxlib/cxxlib/include/hello_msg.h
-share/examples/mk-configure/hello_cxxlib/cxxlib/include/impl/hello_msg1.h
-share/examples/mk-configure/hello_cxxlib/cxxlib/include/impl/hello_msg2.h
-share/examples/mk-configure/hello_cxxlib/cxxlib/linkme.mk
-share/examples/mk-configure/hello_cxxlib/cxxlib2/Makefile
-share/examples/mk-configure/hello_cxxlib/cxxlib2/hello_msg3.cxx
-share/examples/mk-configure/hello_cxxlib/cxxlib2/include/hello_msg2.h
-share/examples/mk-configure/hello_cxxlib/cxxlib2/linkme.mk
-share/examples/mk-configure/hello_cxxlib/expect.out
-share/examples/mk-configure/hello_cxxlib/test.mk
-share/examples/mk-configure/hello_dictd/Makefile
-share/examples/mk-configure/hello_dictd/Makefile.inc
-share/examples/mk-configure/hello_dictd/dict/Makefile
-share/examples/mk-configure/hello_dictd/dict/dict.1
-share/examples/mk-configure/hello_dictd/dict/dict.c
-share/examples/mk-configure/hello_dictd/dictd/Makefile
-share/examples/mk-configure/hello_dictd/dictd/dictd.8
-share/examples/mk-configure/hello_dictd/dictd/dictd.c
-share/examples/mk-configure/hello_dictd/dictfmt/Makefile
-share/examples/mk-configure/hello_dictd/dictfmt/dictfmt.1
-share/examples/mk-configure/hello_dictd/dictfmt/dictfmt.c
-share/examples/mk-configure/hello_dictd/dictzip/Makefile
-share/examples/mk-configure/hello_dictd/dictzip/dictzip.1
-share/examples/mk-configure/hello_dictd/dictzip/dictzip.c
-share/examples/mk-configure/hello_dictd/doc/Makefile
-share/examples/mk-configure/hello_dictd/doc/doc.txt
-share/examples/mk-configure/hello_dictd/expect.out
-share/examples/mk-configure/hello_dictd/libcommon/Makefile
-share/examples/mk-configure/hello_dictd/libcommon/iswalnum.c
-share/examples/mk-configure/hello_dictd/libcommon/str.c
-share/examples/mk-configure/hello_dictd/libdz/Makefile
-share/examples/mk-configure/hello_dictd/libdz/dz.c
-share/examples/mk-configure/hello_dictd/libdz/export.sym
-share/examples/mk-configure/hello_dictd/libmaa/Makefile
-share/examples/mk-configure/hello_dictd/libmaa/export.sym
-share/examples/mk-configure/hello_dictd/libmaa/log.c
-share/examples/mk-configure/hello_dictd/libmaa/prime.c
-share/examples/mk-configure/hello_dictd/libmaa/set.c
-share/examples/mk-configure/hello_dictd/test.mk
-share/examples/mk-configure/hello_errwarn/Makefile
-share/examples/mk-configure/hello_errwarn/Makefile.inc
-share/examples/mk-configure/hello_errwarn/expect.out
-share/examples/mk-configure/hello_errwarn/hello.c
-share/examples/mk-configure/hello_errwarn/test.mk
-share/examples/mk-configure/hello_fgetln/Makefile
-share/examples/mk-configure/hello_fgetln/expect.out
-share/examples/mk-configure/hello_fgetln/hello.c
-share/examples/mk-configure/hello_fgetln/test.mk
-share/examples/mk-configure/hello_files/DEBIAN/control
-share/examples/mk-configure/hello_files/Makefile
-share/examples/mk-configure/hello_files/expect.NetBSD.out
-share/examples/mk-configure/hello_files/expect.out
-share/examples/mk-configure/hello_files/shell_func.7
-share/examples/mk-configure/hello_files/shell_func.texinfo
-share/examples/mk-configure/hello_files/shell_func1
-share/examples/mk-configure/hello_files/shell_func2
-share/examples/mk-configure/hello_files/shell_func3
-share/examples/mk-configure/hello_files/test.mk
 share/examples/mk-configure/hello_glib2/Makefile
 share/examples/mk-configure/hello_glib2/expect.out
 share/examples/mk-configure/hello_glib2/hello_glib2.c
 share/examples/mk-configure/hello_glib2/test.mk
-share/examples/mk-configure/hello_iconv/Makefile
-share/examples/mk-configure/hello_iconv/expect.out
-share/examples/mk-configure/hello_iconv/hello_iconv.c
-share/examples/mk-configure/hello_iconv/test.mk
-share/examples/mk-configure/hello_lex/Makefile
-share/examples/mk-configure/hello_lex/expect.out
-share/examples/mk-configure/hello_lex/hello_lex.l
-share/examples/mk-configure/hello_lex/input.txt
-share/examples/mk-configure/hello_lex/test.mk
-share/examples/mk-configure/hello_libdeps/Makefile
-share/examples/mk-configure/hello_libdeps/expect.out
-share/examples/mk-configure/hello_libdeps/libs/libbar/Makefile
-share/examples/mk-configure/hello_libdeps/libs/libbar/bar.c
-share/examples/mk-configure/hello_libdeps/libs/libbar/bar.h
-share/examples/mk-configure/hello_libdeps/libs/libbaz/Makefile
-share/examples/mk-configure/hello_libdeps/libs/libbaz/baz.c
-share/examples/mk-configure/hello_libdeps/libs/libbaz/include/baz.h
-share/examples/mk-configure/hello_libdeps/libs/libbaz/linkme.mk
-share/examples/mk-configure/hello_libdeps/libs/libfoo/Makefile
-share/examples/mk-configure/hello_libdeps/libs/libfoo/foo.c
-share/examples/mk-configure/hello_libdeps/libs/libfoo/foo.h
-share/examples/mk-configure/hello_libdeps/libs/libfoo/linkme.mk
-share/examples/mk-configure/hello_libdeps/libs/libfooqux/Makefile
-share/examples/mk-configure/hello_libdeps/libs/libfooqux/fooqux.c
-share/examples/mk-configure/hello_libdeps/libs/libfooqux/fooqux.h
-share/examples/mk-configure/hello_libdeps/progs/foobaz/Makefile
-share/examples/mk-configure/hello_libdeps/progs/foobaz/foobaz.c
-share/examples/mk-configure/hello_libdeps/progs/fooquxfoobar/Makefile
-share/examples/mk-configure/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c
-share/examples/mk-configure/hello_libdeps/test.mk
 share/examples/mk-configure/hello_lua/Makefile
 share/examples/mk-configure/hello_lua/bar.lua
 share/examples/mk-configure/hello_lua/baz.c
@@ -246,121 +258,12 @@ share/examples/mk-configure/hello_lua3/s
 share/examples/mk-configure/hello_lua3/socket_baz.c
 share/examples/mk-configure/hello_lua3/socket_foo.lua
 share/examples/mk-configure/hello_lua3/test.mk
-share/examples/mk-configure/hello_plugins/Makefile
-share/examples/mk-configure/hello_plugins/app/Makefile
-share/examples/mk-configure/hello_plugins/app/app.c
-share/examples/mk-configure/hello_plugins/expect.out
-share/examples/mk-configure/hello_plugins/plugin1/Makefile
-share/examples/mk-configure/hello_plugins/plugin1/plugin1.c
-share/examples/mk-configure/hello_plugins/plugin2/Makefile
-share/examples/mk-configure/hello_plugins/plugin2/plugin2.c
-share/examples/mk-configure/hello_plugins/test.mk
-share/examples/mk-configure/hello_plugins2/Makefile
-share/examples/mk-configure/hello_plugins2/app/Makefile
-share/examples/mk-configure/hello_plugins2/app/app.c
-share/examples/mk-configure/hello_plugins2/expect.out
-share/examples/mk-configure/hello_plugins2/plugin1/Makefile
-share/examples/mk-configure/hello_plugins2/plugin1/plugin1.c
-share/examples/mk-configure/hello_plugins2/plugin2/Makefile
-share/examples/mk-configure/hello_plugins2/plugin2/plugin2.c
-share/examples/mk-configure/hello_plugins2/test.mk
-share/examples/mk-configure/hello_progs/Makefile
-share/examples/mk-configure/hello_progs/client.c
-share/examples/mk-configure/hello_progs/client_puts.c
-share/examples/mk-configure/hello_progs/expect.out
-share/examples/mk-configure/hello_progs/server.c
-share/examples/mk-configure/hello_progs/server_puts.c
-share/examples/mk-configure/hello_progs/test.mk
-share/examples/mk-configure/hello_progs2/Makefile
-share/examples/mk-configure/hello_progs2/client.c
-share/examples/mk-configure/hello_progs2/common.c
-share/examples/mk-configure/hello_progs2/expect.out
-share/examples/mk-configure/hello_progs2/server.c
-share/examples/mk-configure/hello_progs2/test.mk
-share/examples/mk-configure/hello_require_tools/Makefile
-share/examples/mk-configure/hello_require_tools/fake
-share/examples/mk-configure/hello_requirements/Makefile
-share/examples/mk-configure/hello_requirements/custom_check1.c
-share/examples/mk-configure/hello_requirements/custom_check2.c
-share/examples/mk-configure/hello_requirements/expect.out
-share/examples/mk-configure/hello_requirements/hello_world.c
-share/examples/mk-configure/hello_requirements/test.mk
-share/examples/mk-configure/hello_scripts/Makefile
-share/examples/mk-configure/hello_scripts/expect.out
-share/examples/mk-configure/hello_scripts/hello_world.1
-share/examples/mk-configure/hello_scripts/hello_world2
-share/examples/mk-configure/hello_scripts/hello_world3.in
-share/examples/mk-configure/hello_scripts/main.c
-share/examples/mk-configure/hello_scripts/more_scripts/script1
-share/examples/mk-configure/hello_scripts/more_scripts/script2
-share/examples/mk-configure/hello_scripts/more_scripts/script3
-share/examples/mk-configure/hello_scripts/msg.c
-share/examples/mk-configure/hello_scripts/test.mk
-share/examples/mk-configure/hello_sizeof/Makefile
-share/examples/mk-configure/hello_sizeof/expect.out
-share/examples/mk-configure/hello_sizeof/sizeof_test.c
-share/examples/mk-configure/hello_sizeof/test.mk
-share/examples/mk-configure/hello_strlcpy/Makefile
-share/examples/mk-configure/hello_strlcpy/expect.out
-share/examples/mk-configure/hello_strlcpy/getline.c
-share/examples/mk-configure/hello_strlcpy/hello.c
-share/examples/mk-configure/hello_strlcpy/input.in
-share/examples/mk-configure/hello_strlcpy/strlcpy.c
-share/examples/mk-configure/hello_strlcpy/test.mk
-share/examples/mk-configure/hello_strlcpy2/Makefile
-share/examples/mk-configure/hello_strlcpy2/expect.out
-share/examples/mk-configure/hello_strlcpy2/hello.c
-share/examples/mk-configure/hello_strlcpy2/input.in
-share/examples/mk-configure/hello_strlcpy2/missing/getline.c
-share/examples/mk-configure/hello_strlcpy2/missing/strlcpy.c
-share/examples/mk-configure/hello_strlcpy2/test.mk
-share/examples/mk-configure/hello_strlcpy3/Makefile
-share/examples/mk-configure/hello_strlcpy3/expect.out
-share/examples/mk-configure/hello_strlcpy3/hello.c
-share/examples/mk-configure/hello_strlcpy3/input.in
-share/examples/mk-configure/hello_strlcpy3/test.mk
-share/examples/mk-configure/hello_subdirs/Makefile
-share/examples/mk-configure/hello_subdirs/prog1/Makefile
-share/examples/mk-configure/hello_subdirs/prog1/expect.out
-share/examples/mk-configure/hello_subdirs/prog1/prog1.awk.in
-share/examples/mk-configure/hello_subdirs/prog1/prog1.c
-share/examples/mk-configure/hello_subdirs/prog1/prog1.sh
-share/examples/mk-configure/hello_subdirs/prog1/test.mk
-share/examples/mk-configure/hello_subdirs/prog2/Makefile
-share/examples/mk-configure/hello_subdirs/prog2/expect.out
-share/examples/mk-configure/hello_subdirs/prog2/prog2.c
-share/examples/mk-configure/hello_subdirs/prog2/test.mk
-share/examples/mk-configure/hello_superfs/Makefile
-share/examples/mk-configure/hello_superfs/Makefile.inc
-share/examples/mk-configure/hello_superfs/docs/LICENSE
-share/examples/mk-configure/hello_superfs/docs/Makefile
-share/examples/mk-configure/hello_superfs/docs/NEWS
-share/examples/mk-configure/hello_superfs/docs/README
-share/examples/mk-configure/hello_superfs/expect.out
-share/examples/mk-configure/hello_superfs/fsck_superfs/Makefile
-share/examples/mk-configure/hello_superfs/fsck_superfs/fsck_superfs.8
-share/examples/mk-configure/hello_superfs/fsck_superfs/fsck_superfs.c
-share/examples/mk-configure/hello_superfs/mkfs_superfs/Makefile
-share/examples/mk-configure/hello_superfs/mkfs_superfs/mkfs_superfs.8
-share/examples/mk-configure/hello_superfs/mkfs_superfs/mkfs_superfs.c
-share/examples/mk-configure/hello_superfs/test.mk
 share/examples/mk-configure/hello_world/COPYRIGHT
 share/examples/mk-configure/hello_world/Makefile
 share/examples/mk-configure/hello_world/README
 share/examples/mk-configure/hello_world/expect.out
 share/examples/mk-configure/hello_world/hello_world.c
 share/examples/mk-configure/hello_world/test.mk
-share/examples/mk-configure/hello_xxzip/Makefile
-share/examples/mk-configure/hello_xxzip/expect.out
-share/examples/mk-configure/hello_xxzip/test.mk
-share/examples/mk-configure/hello_xxzip/tutorial.pod
-share/examples/mk-configure/hello_xxzip/xxzip.c
-share/examples/mk-configure/hello_xxzip/xxzip.pod
-share/examples/mk-configure/hello_yacc/Makefile
-share/examples/mk-configure/hello_yacc/calc.y
-share/examples/mk-configure/hello_yacc/expect.out
-share/examples/mk-configure/hello_yacc/input.txt
-share/examples/mk-configure/hello_yacc/test.mk
 share/examples/mk-configure/help_target/Makefile
 share/examples/mk-configure/help_target/expect.out
 share/examples/mk-configure/help_target/print_value.c
@@ -374,10 +277,130 @@ share/examples/mk-configure/helpers/mkc_
 share/examples/mk-configure/helpers/mkc_test_helper3
 share/examples/mk-configure/helpers/mkc_test_helper_paths
 share/examples/mk-configure/helpers/mkc_test_nm
+share/examples/mk-configure/iconv/Makefile
+share/examples/mk-configure/iconv/expect.out
+share/examples/mk-configure/iconv/hello_iconv.c
+share/examples/mk-configure/iconv/test.mk
+share/examples/mk-configure/lexer/Makefile
+share/examples/mk-configure/lexer/expect.out
+share/examples/mk-configure/lexer/input.txt
+share/examples/mk-configure/lexer/lexer.l
+share/examples/mk-configure/lexer/test.mk
+share/examples/mk-configure/libdeps/Makefile
+share/examples/mk-configure/libdeps/expect.out
+share/examples/mk-configure/libdeps/libs/libbar/Makefile
+share/examples/mk-configure/libdeps/libs/libbar/bar.c
+share/examples/mk-configure/libdeps/libs/libbar/bar.h
+share/examples/mk-configure/libdeps/libs/libbaz/Makefile
+share/examples/mk-configure/libdeps/libs/libbaz/baz.c
+share/examples/mk-configure/libdeps/libs/libbaz/include/baz.h
+share/examples/mk-configure/libdeps/libs/libbaz/linkme.mk
+share/examples/mk-configure/libdeps/libs/libfoo/Makefile
+share/examples/mk-configure/libdeps/libs/libfoo/foo.c
+share/examples/mk-configure/libdeps/libs/libfoo/foo.h
+share/examples/mk-configure/libdeps/libs/libfoo/linkme.mk
+share/examples/mk-configure/libdeps/libs/libfooqux/Makefile
+share/examples/mk-configure/libdeps/libs/libfooqux/fooqux.c
+share/examples/mk-configure/libdeps/libs/libfooqux/fooqux.h
+share/examples/mk-configure/libdeps/progs/foobaz/Makefile
+share/examples/mk-configure/libdeps/progs/foobaz/foobaz.c
+share/examples/mk-configure/libdeps/progs/fooquxfoobar/Makefile
+share/examples/mk-configure/libdeps/progs/fooquxfoobar/fooquxfoobar.c
+share/examples/mk-configure/libdeps/test.mk
+share/examples/mk-configure/makefile
 share/examples/mk-configure/pkgconfig3/Makefile
 share/examples/mk-configure/pkgconfig3/expect.out
 share/examples/mk-configure/pkgconfig3/pkgconfig3.c
 share/examples/mk-configure/pkgconfig3/test.mk
+share/examples/mk-configure/plugins/Makefile
+share/examples/mk-configure/plugins/app/Makefile
+share/examples/mk-configure/plugins/app/app.c
+share/examples/mk-configure/plugins/expect.out
+share/examples/mk-configure/plugins/plugin1/Makefile
+share/examples/mk-configure/plugins/plugin1/plugin1.c
+share/examples/mk-configure/plugins/plugin2/Makefile
+share/examples/mk-configure/plugins/plugin2/plugin2.c
+share/examples/mk-configure/plugins/test.mk
+share/examples/mk-configure/plugins2/Makefile
+share/examples/mk-configure/plugins2/app/Makefile
+share/examples/mk-configure/plugins2/app/app.c
+share/examples/mk-configure/plugins2/expect.out
+share/examples/mk-configure/plugins2/plugin1/Makefile
+share/examples/mk-configure/plugins2/plugin1/plugin1.c
+share/examples/mk-configure/plugins2/plugin2/Makefile
+share/examples/mk-configure/plugins2/plugin2/plugin2.c
+share/examples/mk-configure/plugins2/test.mk
+share/examples/mk-configure/posix_getopt/Makefile
+share/examples/mk-configure/posix_getopt/expect.out
+share/examples/mk-configure/posix_getopt/prog.c
+share/examples/mk-configure/posix_getopt/test.mk
+share/examples/mk-configure/progs/Makefile
+share/examples/mk-configure/progs/client.c
+share/examples/mk-configure/progs/client_puts.c
+share/examples/mk-configure/progs/expect.out
+share/examples/mk-configure/progs/server.c
+share/examples/mk-configure/progs/server_puts.c
+share/examples/mk-configure/progs/test.mk
+share/examples/mk-configure/progs2/Makefile
+share/examples/mk-configure/progs2/client.c
+share/examples/mk-configure/progs2/common.c
+share/examples/mk-configure/progs2/expect.out
+share/examples/mk-configure/progs2/server.c
+share/examples/mk-configure/progs2/test.mk
+share/examples/mk-configure/raise_default_signal/Makefile
+share/examples/mk-configure/raise_default_signal/expect.out
+share/examples/mk-configure/raise_default_signal/prog.c
+share/examples/mk-configure/raise_default_signal/test.mk
+share/examples/mk-configure/reallocarray/Makefile
+share/examples/mk-configure/reallocarray/expect.out
+share/examples/mk-configure/reallocarray/prog.c
+share/examples/mk-configure/reallocarray/test.mk
+share/examples/mk-configure/require_tools/Makefile
+share/examples/mk-configure/require_tools/fake
+share/examples/mk-configure/requirements/Makefile
+share/examples/mk-configure/requirements/custom_check1.c
+share/examples/mk-configure/requirements/custom_check2.c
+share/examples/mk-configure/requirements/expect.out
+share/examples/mk-configure/requirements/hello_world.c
+share/examples/mk-configure/requirements/test.mk
+share/examples/mk-configure/sizeof/Makefile
+share/examples/mk-configure/sizeof/expect.out
+share/examples/mk-configure/sizeof/sizeof_test.c
+share/examples/mk-configure/sizeof/test.mk
+share/examples/mk-configure/strlcpy/Makefile
+share/examples/mk-configure/strlcpy/expect.out
+share/examples/mk-configure/strlcpy/getline.c
+share/examples/mk-configure/strlcpy/hello.c
+share/examples/mk-configure/strlcpy/input.in
+share/examples/mk-configure/strlcpy/strlcpy.c
+share/examples/mk-configure/strlcpy/test.mk
+share/examples/mk-configure/strlcpy2/Makefile
+share/examples/mk-configure/strlcpy2/expect.out
+share/examples/mk-configure/strlcpy2/hello.c
+share/examples/mk-configure/strlcpy2/input.in
+share/examples/mk-configure/strlcpy2/missing/getline.c
+share/examples/mk-configure/strlcpy2/missing/strlcpy.c
+share/examples/mk-configure/strlcpy2/test.mk
+share/examples/mk-configure/strlcpy3/Makefile
+share/examples/mk-configure/strlcpy3/expect.out
+share/examples/mk-configure/strlcpy3/hello.c
+share/examples/mk-configure/strlcpy3/input.in
+share/examples/mk-configure/strlcpy3/test.mk
+share/examples/mk-configure/strsep/Makefile
+share/examples/mk-configure/strsep/expect.out
+share/examples/mk-configure/strsep/prog.c
+share/examples/mk-configure/strsep/test.mk
+share/examples/mk-configure/subdirs/Makefile
+share/examples/mk-configure/subdirs/prog1/Makefile
+share/examples/mk-configure/subdirs/prog1/expect.out
+share/examples/mk-configure/subdirs/prog1/prog1.awk.in
+share/examples/mk-configure/subdirs/prog1/prog1.c
+share/examples/mk-configure/subdirs/prog1/prog1.sh
+share/examples/mk-configure/subdirs/prog1/test.mk
+share/examples/mk-configure/subdirs/prog2/Makefile
+share/examples/mk-configure/subdirs/prog2/expect.out
+share/examples/mk-configure/subdirs/prog2/prog2.c
+share/examples/mk-configure/subdirs/prog2/test.mk
 share/examples/mk-configure/subprojects/Makefile
 share/examples/mk-configure/subprojects/expect.out
 share/examples/mk-configure/subprojects/hello/Makefile
@@ -396,6 +419,20 @@ share/examples/mk-configure/subprojects/
 share/examples/mk-configure/subprojects/libhello2/linkme.mk
 share/examples/mk-configure/subprojects/test.mk
 share/examples/mk-configure/subprojects/version.mk
+share/examples/mk-configure/superfs/Makefile
+share/examples/mk-configure/superfs/Makefile.inc
+share/examples/mk-configure/superfs/docs/LICENSE
+share/examples/mk-configure/superfs/docs/Makefile
+share/examples/mk-configure/superfs/docs/NEWS
+share/examples/mk-configure/superfs/docs/README
+share/examples/mk-configure/superfs/expect.out
+share/examples/mk-configure/superfs/fsck_superfs/Makefile
+share/examples/mk-configure/superfs/fsck_superfs/fsck_superfs.8
+share/examples/mk-configure/superfs/fsck_superfs/fsck_superfs.c
+share/examples/mk-configure/superfs/mkfs_superfs/Makefile
+share/examples/mk-configure/superfs/mkfs_superfs/mkfs_superfs.8
+share/examples/mk-configure/superfs/mkfs_superfs/mkfs_superfs.c
+share/examples/mk-configure/superfs/test.mk
 share/examples/mk-configure/tools/Makefile
 share/examples/mk-configure/tools/expect.out
 share/examples/mk-configure/tools/libs/bar/Makefile
@@ -440,6 +477,16 @@ share/examples/mk-configure/tools2/tools
 share/examples/mk-configure/tools2/tools/prog3/prog3.c
 share/examples/mk-configure/tools2/tools/prog4/Makefile
 share/examples/mk-configure/tools2/tools/prog4/prog4.c
+share/examples/mk-configure/vis/Makefile
+share/examples/mk-configure/vis/expect.out
+share/examples/mk-configure/vis/prog.c
+share/examples/mk-configure/vis/test.mk
+share/examples/mk-configure/xxzip/Makefile
+share/examples/mk-configure/xxzip/expect.out
+share/examples/mk-configure/xxzip/test.mk
+share/examples/mk-configure/xxzip/tutorial.pod
+share/examples/mk-configure/xxzip/xxzip.c
+share/examples/mk-configure/xxzip/xxzip.pod
 share/mk-configure/builtins/easy.c
 share/mk-configure/builtins/easy.cc
 share/mk-configure/builtins/endianness
@@ -451,8 +498,13 @@ share/mk-configure/builtins/prog_gmake
 share/mk-configure/builtins/prog_mkdep
 share/mk-configure/builtins/prog_nbmkdep
 share/mk-configure/features/_mkcfake.c
+share/mk-configure/features/dprintf/dprintf.c
+share/mk-configure/features/efun/efun.c
 share/mk-configure/features/err/err.c
+share/mk-configure/features/errc/errc.c
+share/mk-configure/features/errc/verrc.c
 share/mk-configure/features/fgetln/fgetln.c
+share/mk-configure/features/fparseln/fparseln.c
 share/mk-configure/features/getdelim/getdelim.c
 share/mk-configure/features/getline/getline.c
 share/mk-configure/features/mkc_CIRCLEQ.h
@@ -463,24 +515,42 @@ share/mk-configure/features/mkc_SLIST.h
 share/mk-configure/features/mkc_SPLAY.h
 share/mk-configure/features/mkc_STAILQ.h
 share/mk-configure/features/mkc_TAILQ.h
+share/mk-configure/features/mkc_arc4random.h
+share/mk-configure/features/mkc_bswap.h
+share/mk-configure/features/mkc_dprintf.h
+share/mk-configure/features/mkc_efun.h
 share/mk-configure/features/mkc_err.h
+share/mk-configure/features/mkc_errc.h
 share/mk-configure/features/mkc_externc.h
 share/mk-configure/features/mkc_fgetln.h
+share/mk-configure/features/mkc_fparseln.h
+share/mk-configure/features/mkc_fts.h
 share/mk-configure/features/mkc_getdelim.h
 share/mk-configure/features/mkc_getline.h
 share/mk-configure/features/mkc_libdl.h
 share/mk-configure/features/mkc_libm.h
+share/mk-configure/features/mkc_posix_getopt.h
 share/mk-configure/features/mkc_progname.h
+share/mk-configure/features/mkc_raise_default_signal.h
+share/mk-configure/features/mkc_reallocarray.h
 share/mk-configure/features/mkc_strlcat.h
 share/mk-configure/features/mkc_strlcpy.h
 share/mk-configure/features/mkc_strndup.h
+share/mk-configure/features/mkc_strsep.h
+share/mk-configure/features/mkc_vis.h
 share/mk-configure/features/mkc_warn.h
 share/mk-configure/features/netbsd_sys_queue.h
 share/mk-configure/features/netbsd_sys_tree.h
+share/mk-configure/features/posix_getopt/posix_getopt.c
 share/mk-configure/features/progname/progname.c
+share/mk-configure/features/raise_default_signal/raise_default_signal.c
+share/mk-configure/features/reallocarray/reallocarray.c
 share/mk-configure/features/strlcat/strlcat.c
 share/mk-configure/features/strlcpy/strlcpy.c
 share/mk-configure/features/strndup/strndup.c
+share/mk-configure/features/strsep/strsep.c
+share/mk-configure/features/vis/unvis.c
+share/mk-configure/features/vis/vis.c
 share/mk-configure/features/warn/warn.c
 share/mk-configure/mk/mkc.compiler_settings.mk
 share/mk-configure/mk/mkc.conf.mk
@@ -512,17 +582,29 @@ share/mk-configure/mk/mkc_imp.f_SLIST.mk
 share/mk-configure/mk/mkc_imp.f_SPLAY.mk
 share/mk-configure/mk/mkc_imp.f_STAILQ.mk
 share/mk-configure/mk/mkc_imp.f_TAILQ.mk
+share/mk-configure/mk/mkc_imp.f_arc4random.mk
+share/mk-configure/mk/mkc_imp.f_bswap.mk
+share/mk-configure/mk/mkc_imp.f_dprintf.mk
+share/mk-configure/mk/mkc_imp.f_efun.mk
 share/mk-configure/mk/mkc_imp.f_err.mk
+share/mk-configure/mk/mkc_imp.f_errc.mk
 share/mk-configure/mk/mkc_imp.f_fgetln.mk
+share/mk-configure/mk/mkc_imp.f_fparseln.mk
+share/mk-configure/mk/mkc_imp.f_fts.mk
 share/mk-configure/mk/mkc_imp.f_getdelim.mk
 share/mk-configure/mk/mkc_imp.f_getline.mk
 share/mk-configure/mk/mkc_imp.f_libdl.mk
 share/mk-configure/mk/mkc_imp.f_libl.mk
 share/mk-configure/mk/mkc_imp.f_libm.mk
+share/mk-configure/mk/mkc_imp.f_posix_getopt.mk
 share/mk-configure/mk/mkc_imp.f_progname.mk
+share/mk-configure/mk/mkc_imp.f_raise_default_signal.mk
+share/mk-configure/mk/mkc_imp.f_reallocarray.mk
 share/mk-configure/mk/mkc_imp.f_strlcat.mk
 share/mk-configure/mk/mkc_imp.f_strlcpy.mk
 share/mk-configure/mk/mkc_imp.f_strndup.mk
+share/mk-configure/mk/mkc_imp.f_strsep.mk
+share/mk-configure/mk/mkc_imp.f_vis.mk
 share/mk-configure/mk/mkc_imp.f_warn.mk
 share/mk-configure/mk/mkc_imp.files.mk
 share/mk-configure/mk/mkc_imp.final.mk

Index: pkgsrc/devel/mk-configure/distinfo
diff -u pkgsrc/devel/mk-configure/distinfo:1.26 pkgsrc/devel/mk-configure/distinfo:1.27
--- pkgsrc/devel/mk-configure/distinfo:1.26     Thu May 14 17:45:44 2020
+++ pkgsrc/devel/mk-configure/distinfo  Thu Nov 26 19:47:54 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.26 2020/05/14 17:45:44 cheusov Exp $
+$NetBSD: distinfo,v 1.27 2020/11/26 19:47:54 cheusov Exp $
 
-SHA1 (mk-configure-0.34.2.tar.gz) = 6e09badffc4c40c30c0c0afe95479a9e8ea7a8a2
-RMD160 (mk-configure-0.34.2.tar.gz) = 10e8aa4feef334fcb2bb3187764f7ce1de747a86
-SHA512 (mk-configure-0.34.2.tar.gz) = c69b7bdb64b29a12c3da52ae531f7ab69c128cd899556397ccaea27de3d34eb5d7a3f01bc2d4bb31905db26235e1296d7314f14adf2b2e64baec31ec29e02cf6
-Size (mk-configure-0.34.2.tar.gz) = 326365 bytes
+SHA1 (mk-configure-0.35.0.tar.gz) = 0a5a173f01a6b2e5ad366ccf1ff8f9ace15fca80
+RMD160 (mk-configure-0.35.0.tar.gz) = 7c852d55ceb114631bb1c578e3f54712fcaff557
+SHA512 (mk-configure-0.35.0.tar.gz) = 2bec7a07786b887188e4ac529eb6c83187525efe065faedc004d9548dd66e3ff3ca28df83a1be1848e5aa58137fbe2b5d3b31bb58de9cf1240d82569a10912d4
+Size (mk-configure-0.35.0.tar.gz) = 354653 bytes



Home | Main Index | Thread Index | Old Index