Wed Jan 6 13:05:50 2021 UTC ()
Update to mk-configure-0.36.0

  Introduce new variables:
    * CFLAGS_<source>, CXXFLAGS_<source> and CPPFLAGS_<source>.
      Now one can add some C/C++ compilation flags on per source file
      basis.
    * CCSTD and CXXSTD.
      Now projects based on mk-configure may require
      standard-compliant compiler, for example, C99.
    * CFLAGS0 and CXXFLAGS0.
    * MKCOMPILERSETTINGS.
      See README.for_packagers file for details

  Internal mk files are included only if it is really necessary.  For
  example, mkc_imp.incs.mk is included only if variable INCS is not
  empty. In theory, this should speed-up mkcmake.

  New features: humanize_number, shquote and pwdgrp.

  Deprecate some things:
    * implicit MAN page, that is when MAN variable is not set,
      but man file exists
    * ~/.mk-c directory and @sysconfdir@/mk-c.conf file.
      Please rename them to ~/.mkcmake and
      @sysconfdir@/mkcmake.conf respectively.

  Add preliminary support for ARMCC compiler.

  Optimize installation of directories, run "install -d" once for all
  created directories.

  mkc.lib.mk: after building libraries ${.CURDIR:T}.done file is
  created.  This file is used later for handling inter-project
  dependencies specified by LIBDEPS variable.

  mk-configure.7: document all variables in alphabetic order.
  I hope this makes navigation in the documentation easier.

  Fixes:
    * tests/failed_requirements: fix failure on freebsd
      (strict printf(1))
    * examples/require_tools/fake: make it a real script


(cheusov)
diff -r1.35 -r1.36 pkgsrc/devel/mk-configure/Makefile
diff -r1.18 -r1.19 pkgsrc/devel/mk-configure/PLIST
diff -r1.27 -r1.28 pkgsrc/devel/mk-configure/distinfo
diff -r1.9 -r1.10 pkgsrc/devel/mk-configure/mk-c.mk

cvs diff -r1.35 -r1.36 pkgsrc/devel/mk-configure/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/mk-configure/Makefile 2020/11/26 19:47:54 1.35
+++ pkgsrc/devel/mk-configure/Makefile 2021/01/06 13:05:50 1.36
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.35 2020/11/26 19:47:54 cheusov Exp $ 1# $NetBSD: Makefile,v 1.36 2021/01/06 13:05:50 cheusov Exp $
2# 2#
3 3
4DISTNAME= mk-configure-0.35.0 4DISTNAME= mk-configure-0.36.0
5CATEGORIES= devel 5CATEGORIES= devel
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mk-configure/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mk-configure/}
7 7
8MAINTAINER= cheusov@NetBSD.org 8MAINTAINER= cheusov@NetBSD.org
9HOMEPAGE= https://sourceforge.net/projects/mk-configure 9HOMEPAGE= https://sourceforge.net/projects/mk-configure
10COMMENT= Lightweight but powerful replacement for GNU autotools 10COMMENT= Lightweight but powerful replacement for GNU autotools
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13DEPENDS+= bmake-[0-9]*:../../devel/bmake 13DEPENDS+= bmake-[0-9]*:../../devel/bmake
14 14
15USE_LANGUAGES= c c++ 15USE_LANGUAGES= c c++
16 16
17BUILD_TARGET= all all-doc 17BUILD_TARGET= all all-doc

cvs diff -r1.18 -r1.19 pkgsrc/devel/mk-configure/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/mk-configure/PLIST 2020/11/26 19:47:54 1.18
+++ pkgsrc/devel/mk-configure/PLIST 2021/01/06 13:05:50 1.19
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.18 2020/11/26 19:47:54 cheusov Exp $ 1@comment $NetBSD: PLIST,v 1.19 2021/01/06 13:05:50 cheusov Exp $
2bin/mkc_check_compiler 2bin/mkc_check_compiler
3bin/mkc_check_custom 3bin/mkc_check_custom
4bin/mkc_check_decl 4bin/mkc_check_decl
5bin/mkc_check_funclib 5bin/mkc_check_funclib
6bin/mkc_check_header 6bin/mkc_check_header
7bin/mkc_check_prog 7bin/mkc_check_prog
8bin/mkc_check_sizeof 8bin/mkc_check_sizeof
9bin/mkc_check_version 9bin/mkc_check_version
10bin/mkc_compiler_settings 10bin/mkc_compiler_settings
11bin/mkc_install 11bin/mkc_install
12bin/mkc_which 12bin/mkc_which
13bin/mkcmake 13bin/mkcmake
14libexec/mk-configure/mkc_check_common.sh 14libexec/mk-configure/mkc_check_common.sh
@@ -66,26 +66,29 @@ share/examples/mk-configure/autotools/ex @@ -66,26 +66,29 @@ share/examples/mk-configure/autotools/ex
66share/examples/mk-configure/autotools/proj/AUTHORS 66share/examples/mk-configure/autotools/proj/AUTHORS
67share/examples/mk-configure/autotools/proj/COPYING 67share/examples/mk-configure/autotools/proj/COPYING
68share/examples/mk-configure/autotools/proj/ChangeLog 68share/examples/mk-configure/autotools/proj/ChangeLog
69share/examples/mk-configure/autotools/proj/Makefile.am 69share/examples/mk-configure/autotools/proj/Makefile.am
70share/examples/mk-configure/autotools/proj/NEWS 70share/examples/mk-configure/autotools/proj/NEWS
71share/examples/mk-configure/autotools/proj/README 71share/examples/mk-configure/autotools/proj/README
72share/examples/mk-configure/autotools/proj/configure.ac 72share/examples/mk-configure/autotools/proj/configure.ac
73share/examples/mk-configure/autotools/proj/main.c 73share/examples/mk-configure/autotools/proj/main.c
74share/examples/mk-configure/autotools/test.mk 74share/examples/mk-configure/autotools/test.mk
75share/examples/mk-configure/bswap/Makefile 75share/examples/mk-configure/bswap/Makefile
76share/examples/mk-configure/bswap/expect.out 76share/examples/mk-configure/bswap/expect.out
77share/examples/mk-configure/bswap/prog.c 77share/examples/mk-configure/bswap/prog.c
78share/examples/mk-configure/bswap/test.mk 78share/examples/mk-configure/bswap/test.mk
 79share/examples/mk-configure/c99/Makefile
 80share/examples/mk-configure/c99/c99_test.c
 81share/examples/mk-configure/c99/inline_func.h
79share/examples/mk-configure/calc/Makefile 82share/examples/mk-configure/calc/Makefile
80share/examples/mk-configure/calc/calc.y 83share/examples/mk-configure/calc/calc.y
81share/examples/mk-configure/calc/expect.out 84share/examples/mk-configure/calc/expect.out
82share/examples/mk-configure/calc/input.txt 85share/examples/mk-configure/calc/input.txt
83share/examples/mk-configure/calc/test.mk 86share/examples/mk-configure/calc/test.mk
84share/examples/mk-configure/calc2/Makefile 87share/examples/mk-configure/calc2/Makefile
85share/examples/mk-configure/calc2/expect.out 88share/examples/mk-configure/calc2/expect.out
86share/examples/mk-configure/calc2/expressions.txt 89share/examples/mk-configure/calc2/expressions.txt
87share/examples/mk-configure/calc2/lex.l 90share/examples/mk-configure/calc2/lex.l
88share/examples/mk-configure/calc2/parser.y 91share/examples/mk-configure/calc2/parser.y
89share/examples/mk-configure/calc2/test.mk 92share/examples/mk-configure/calc2/test.mk
90share/examples/mk-configure/check_compiler_opts/Makefile 93share/examples/mk-configure/check_compiler_opts/Makefile
91share/examples/mk-configure/check_compiler_opts/expect.out 94share/examples/mk-configure/check_compiler_opts/expect.out
@@ -267,26 +270,28 @@ share/examples/mk-configure/hello_world/ @@ -267,26 +270,28 @@ share/examples/mk-configure/hello_world/
267share/examples/mk-configure/help_target/Makefile 270share/examples/mk-configure/help_target/Makefile
268share/examples/mk-configure/help_target/expect.out 271share/examples/mk-configure/help_target/expect.out
269share/examples/mk-configure/help_target/print_value.c 272share/examples/mk-configure/help_target/print_value.c
270share/examples/mk-configure/help_target/test.mk 273share/examples/mk-configure/help_target/test.mk
271share/examples/mk-configure/helpers/Makefile 274share/examples/mk-configure/helpers/Makefile
272share/examples/mk-configure/helpers/mkc_fake_strip 275share/examples/mk-configure/helpers/mkc_fake_strip
273share/examples/mk-configure/helpers/mkc_long_lines 276share/examples/mk-configure/helpers/mkc_long_lines
274share/examples/mk-configure/helpers/mkc_long_lines.in 277share/examples/mk-configure/helpers/mkc_long_lines.in
275share/examples/mk-configure/helpers/mkc_test_helper 278share/examples/mk-configure/helpers/mkc_test_helper
276share/examples/mk-configure/helpers/mkc_test_helper2 279share/examples/mk-configure/helpers/mkc_test_helper2
277share/examples/mk-configure/helpers/mkc_test_helper3 280share/examples/mk-configure/helpers/mkc_test_helper3
278share/examples/mk-configure/helpers/mkc_test_helper_paths 281share/examples/mk-configure/helpers/mkc_test_helper_paths
279share/examples/mk-configure/helpers/mkc_test_nm 282share/examples/mk-configure/helpers/mkc_test_nm
 283share/examples/mk-configure/humanize_number/Makefile
 284share/examples/mk-configure/humanize_number/prog.c
280share/examples/mk-configure/iconv/Makefile 285share/examples/mk-configure/iconv/Makefile
281share/examples/mk-configure/iconv/expect.out 286share/examples/mk-configure/iconv/expect.out
282share/examples/mk-configure/iconv/hello_iconv.c 287share/examples/mk-configure/iconv/hello_iconv.c
283share/examples/mk-configure/iconv/test.mk 288share/examples/mk-configure/iconv/test.mk
284share/examples/mk-configure/lexer/Makefile 289share/examples/mk-configure/lexer/Makefile
285share/examples/mk-configure/lexer/expect.out 290share/examples/mk-configure/lexer/expect.out
286share/examples/mk-configure/lexer/input.txt 291share/examples/mk-configure/lexer/input.txt
287share/examples/mk-configure/lexer/lexer.l 292share/examples/mk-configure/lexer/lexer.l
288share/examples/mk-configure/lexer/test.mk 293share/examples/mk-configure/lexer/test.mk
289share/examples/mk-configure/libdeps/Makefile 294share/examples/mk-configure/libdeps/Makefile
290share/examples/mk-configure/libdeps/expect.out 295share/examples/mk-configure/libdeps/expect.out
291share/examples/mk-configure/libdeps/libs/libbar/Makefile 296share/examples/mk-configure/libdeps/libs/libbar/Makefile
292share/examples/mk-configure/libdeps/libs/libbar/bar.c 297share/examples/mk-configure/libdeps/libs/libbar/bar.c
@@ -353,26 +358,30 @@ share/examples/mk-configure/raise_defaul @@ -353,26 +358,30 @@ share/examples/mk-configure/raise_defaul
353share/examples/mk-configure/raise_default_signal/test.mk 358share/examples/mk-configure/raise_default_signal/test.mk
354share/examples/mk-configure/reallocarray/Makefile 359share/examples/mk-configure/reallocarray/Makefile
355share/examples/mk-configure/reallocarray/expect.out 360share/examples/mk-configure/reallocarray/expect.out
356share/examples/mk-configure/reallocarray/prog.c 361share/examples/mk-configure/reallocarray/prog.c
357share/examples/mk-configure/reallocarray/test.mk 362share/examples/mk-configure/reallocarray/test.mk
358share/examples/mk-configure/require_tools/Makefile 363share/examples/mk-configure/require_tools/Makefile
359share/examples/mk-configure/require_tools/fake 364share/examples/mk-configure/require_tools/fake
360share/examples/mk-configure/requirements/Makefile 365share/examples/mk-configure/requirements/Makefile
361share/examples/mk-configure/requirements/custom_check1.c 366share/examples/mk-configure/requirements/custom_check1.c
362share/examples/mk-configure/requirements/custom_check2.c 367share/examples/mk-configure/requirements/custom_check2.c
363share/examples/mk-configure/requirements/expect.out 368share/examples/mk-configure/requirements/expect.out
364share/examples/mk-configure/requirements/hello_world.c 369share/examples/mk-configure/requirements/hello_world.c
365share/examples/mk-configure/requirements/test.mk 370share/examples/mk-configure/requirements/test.mk
 371share/examples/mk-configure/shquote/Makefile
 372share/examples/mk-configure/shquote/expect.out
 373share/examples/mk-configure/shquote/prog.c
 374share/examples/mk-configure/shquote/test.mk
366share/examples/mk-configure/sizeof/Makefile 375share/examples/mk-configure/sizeof/Makefile
367share/examples/mk-configure/sizeof/expect.out 376share/examples/mk-configure/sizeof/expect.out
368share/examples/mk-configure/sizeof/sizeof_test.c 377share/examples/mk-configure/sizeof/sizeof_test.c
369share/examples/mk-configure/sizeof/test.mk 378share/examples/mk-configure/sizeof/test.mk
370share/examples/mk-configure/strlcpy/Makefile 379share/examples/mk-configure/strlcpy/Makefile
371share/examples/mk-configure/strlcpy/expect.out 380share/examples/mk-configure/strlcpy/expect.out
372share/examples/mk-configure/strlcpy/getline.c 381share/examples/mk-configure/strlcpy/getline.c
373share/examples/mk-configure/strlcpy/hello.c 382share/examples/mk-configure/strlcpy/hello.c
374share/examples/mk-configure/strlcpy/input.in 383share/examples/mk-configure/strlcpy/input.in
375share/examples/mk-configure/strlcpy/strlcpy.c 384share/examples/mk-configure/strlcpy/strlcpy.c
376share/examples/mk-configure/strlcpy/test.mk 385share/examples/mk-configure/strlcpy/test.mk
377share/examples/mk-configure/strlcpy2/Makefile 386share/examples/mk-configure/strlcpy2/Makefile
378share/examples/mk-configure/strlcpy2/expect.out 387share/examples/mk-configure/strlcpy2/expect.out
@@ -423,26 +432,29 @@ share/examples/mk-configure/superfs/Make @@ -423,26 +432,29 @@ share/examples/mk-configure/superfs/Make
423share/examples/mk-configure/superfs/Makefile.inc 432share/examples/mk-configure/superfs/Makefile.inc
424share/examples/mk-configure/superfs/docs/LICENSE 433share/examples/mk-configure/superfs/docs/LICENSE
425share/examples/mk-configure/superfs/docs/Makefile 434share/examples/mk-configure/superfs/docs/Makefile
426share/examples/mk-configure/superfs/docs/NEWS 435share/examples/mk-configure/superfs/docs/NEWS
427share/examples/mk-configure/superfs/docs/README 436share/examples/mk-configure/superfs/docs/README
428share/examples/mk-configure/superfs/expect.out 437share/examples/mk-configure/superfs/expect.out
429share/examples/mk-configure/superfs/fsck_superfs/Makefile 438share/examples/mk-configure/superfs/fsck_superfs/Makefile
430share/examples/mk-configure/superfs/fsck_superfs/fsck_superfs.8 439share/examples/mk-configure/superfs/fsck_superfs/fsck_superfs.8
431share/examples/mk-configure/superfs/fsck_superfs/fsck_superfs.c 440share/examples/mk-configure/superfs/fsck_superfs/fsck_superfs.c
432share/examples/mk-configure/superfs/mkfs_superfs/Makefile 441share/examples/mk-configure/superfs/mkfs_superfs/Makefile
433share/examples/mk-configure/superfs/mkfs_superfs/mkfs_superfs.8 442share/examples/mk-configure/superfs/mkfs_superfs/mkfs_superfs.8
434share/examples/mk-configure/superfs/mkfs_superfs/mkfs_superfs.c 443share/examples/mk-configure/superfs/mkfs_superfs/mkfs_superfs.c
435share/examples/mk-configure/superfs/test.mk 444share/examples/mk-configure/superfs/test.mk
 445share/examples/mk-configure/tiny_id/Makefile
 446share/examples/mk-configure/tiny_id/test.mk
 447share/examples/mk-configure/tiny_id/tiny_id.c
436share/examples/mk-configure/tools/Makefile 448share/examples/mk-configure/tools/Makefile
437share/examples/mk-configure/tools/expect.out 449share/examples/mk-configure/tools/expect.out
438share/examples/mk-configure/tools/libs/bar/Makefile 450share/examples/mk-configure/tools/libs/bar/Makefile
439share/examples/mk-configure/tools/libs/bar/bar.c 451share/examples/mk-configure/tools/libs/bar/bar.c
440share/examples/mk-configure/tools/libs/bar/bar.h 452share/examples/mk-configure/tools/libs/bar/bar.h
441share/examples/mk-configure/tools/libs/foo/Makefile 453share/examples/mk-configure/tools/libs/foo/Makefile
442share/examples/mk-configure/tools/libs/foo/foo.c 454share/examples/mk-configure/tools/libs/foo/foo.c
443share/examples/mk-configure/tools/libs/foo/foo.h 455share/examples/mk-configure/tools/libs/foo/foo.h
444share/examples/mk-configure/tools/libs/qux/Makefile 456share/examples/mk-configure/tools/libs/qux/Makefile
445share/examples/mk-configure/tools/libs/qux/qux.c 457share/examples/mk-configure/tools/libs/qux/qux.c
446share/examples/mk-configure/tools/libs/qux/qux.h.in 458share/examples/mk-configure/tools/libs/qux/qux.h.in
447share/examples/mk-configure/tools/test.mk 459share/examples/mk-configure/tools/test.mk
448share/examples/mk-configure/tools/tools/prog1/Makefile 460share/examples/mk-configure/tools/tools/prog1/Makefile
@@ -488,128 +500,150 @@ share/examples/mk-configure/xxzip/tutori @@ -488,128 +500,150 @@ share/examples/mk-configure/xxzip/tutori
488share/examples/mk-configure/xxzip/xxzip.c 500share/examples/mk-configure/xxzip/xxzip.c
489share/examples/mk-configure/xxzip/xxzip.pod 501share/examples/mk-configure/xxzip/xxzip.pod
490share/mk-configure/builtins/easy.c 502share/mk-configure/builtins/easy.c
491share/mk-configure/builtins/easy.cc 503share/mk-configure/builtins/easy.cc
492share/mk-configure/builtins/endianness 504share/mk-configure/builtins/endianness
493share/mk-configure/builtins/prog_bison 505share/mk-configure/builtins/prog_bison
494share/mk-configure/builtins/prog_flex 506share/mk-configure/builtins/prog_flex
495share/mk-configure/builtins/prog_gawk 507share/mk-configure/builtins/prog_gawk
496share/mk-configure/builtins/prog_gm4 508share/mk-configure/builtins/prog_gm4
497share/mk-configure/builtins/prog_gmake 509share/mk-configure/builtins/prog_gmake
498share/mk-configure/builtins/prog_mkdep 510share/mk-configure/builtins/prog_mkdep
499share/mk-configure/builtins/prog_nbmkdep 511share/mk-configure/builtins/prog_nbmkdep
500share/mk-configure/features/_mkcfake.c 512share/mk-configure/features/_mkcfake.c
501share/mk-configure/features/dprintf/dprintf.c 513share/mk-configure/features/dprintf/mkc_dprintf.c
502share/mk-configure/features/efun/efun.c 514share/mk-configure/features/efun/mkc_efun.c
503share/mk-configure/features/err/err.c 515share/mk-configure/features/err/mkc_err.c
504share/mk-configure/features/errc/errc.c 516share/mk-configure/features/errc/mkc_errc.c
505share/mk-configure/features/errc/verrc.c 517share/mk-configure/features/errc/mkc_verrc.c
506share/mk-configure/features/fgetln/fgetln.c 518share/mk-configure/features/fgetln/mkc_fgetln.c
507share/mk-configure/features/fparseln/fparseln.c 519share/mk-configure/features/fparseln/mkc_fparseln.c
508share/mk-configure/features/getdelim/getdelim.c 520share/mk-configure/features/getdelim/mkc_getdelim.c
509share/mk-configure/features/getline/getline.c 521share/mk-configure/features/getline/mkc_getline.c
 522share/mk-configure/features/humanize_number/mkc_humanize_number.c
510share/mk-configure/features/mkc_CIRCLEQ.h 523share/mk-configure/features/mkc_CIRCLEQ.h
511share/mk-configure/features/mkc_LIST.h 524share/mk-configure/features/mkc_LIST.h
512share/mk-configure/features/mkc_RB.h 525share/mk-configure/features/mkc_RB.h
513share/mk-configure/features/mkc_SIMPLEQ.h 526share/mk-configure/features/mkc_SIMPLEQ.h
514share/mk-configure/features/mkc_SLIST.h 527share/mk-configure/features/mkc_SLIST.h
515share/mk-configure/features/mkc_SPLAY.h 528share/mk-configure/features/mkc_SPLAY.h
516share/mk-configure/features/mkc_STAILQ.h 529share/mk-configure/features/mkc_STAILQ.h
517share/mk-configure/features/mkc_TAILQ.h 530share/mk-configure/features/mkc_TAILQ.h
518share/mk-configure/features/mkc_arc4random.h 531share/mk-configure/features/mkc_arc4random.h
519share/mk-configure/features/mkc_bswap.h 532share/mk-configure/features/mkc_bswap.h
520share/mk-configure/features/mkc_dprintf.h 533share/mk-configure/features/mkc_dprintf.h
521share/mk-configure/features/mkc_efun.h 534share/mk-configure/features/mkc_efun.h
522share/mk-configure/features/mkc_err.h 535share/mk-configure/features/mkc_err.h
523share/mk-configure/features/mkc_errc.h 536share/mk-configure/features/mkc_errc.h
524share/mk-configure/features/mkc_externc.h 537share/mk-configure/features/mkc_externc.h
525share/mk-configure/features/mkc_fgetln.h 538share/mk-configure/features/mkc_fgetln.h
526share/mk-configure/features/mkc_fparseln.h 539share/mk-configure/features/mkc_fparseln.h
527share/mk-configure/features/mkc_fts.h 540share/mk-configure/features/mkc_fts.h
528share/mk-configure/features/mkc_getdelim.h 541share/mk-configure/features/mkc_getdelim.h
529share/mk-configure/features/mkc_getline.h 542share/mk-configure/features/mkc_getline.h
 543share/mk-configure/features/mkc_humanize_number.h
530share/mk-configure/features/mkc_libdl.h 544share/mk-configure/features/mkc_libdl.h
531share/mk-configure/features/mkc_libm.h 545share/mk-configure/features/mkc_libm.h
532share/mk-configure/features/mkc_posix_getopt.h 546share/mk-configure/features/mkc_posix_getopt.h
533share/mk-configure/features/mkc_progname.h 547share/mk-configure/features/mkc_progname.h
 548share/mk-configure/features/mkc_pwdgrp.h
534share/mk-configure/features/mkc_raise_default_signal.h 549share/mk-configure/features/mkc_raise_default_signal.h
535share/mk-configure/features/mkc_reallocarray.h 550share/mk-configure/features/mkc_reallocarray.h
 551share/mk-configure/features/mkc_shquote.h
536share/mk-configure/features/mkc_strlcat.h 552share/mk-configure/features/mkc_strlcat.h
537share/mk-configure/features/mkc_strlcpy.h 553share/mk-configure/features/mkc_strlcpy.h
538share/mk-configure/features/mkc_strndup.h 554share/mk-configure/features/mkc_strndup.h
539share/mk-configure/features/mkc_strsep.h 555share/mk-configure/features/mkc_strsep.h
540share/mk-configure/features/mkc_vis.h 556share/mk-configure/features/mkc_vis.h
541share/mk-configure/features/mkc_warn.h 557share/mk-configure/features/mkc_warn.h
542share/mk-configure/features/netbsd_sys_queue.h 558share/mk-configure/features/netbsd_sys_queue.h
543share/mk-configure/features/netbsd_sys_tree.h 559share/mk-configure/features/netbsd_sys_tree.h
544share/mk-configure/features/posix_getopt/posix_getopt.c 560share/mk-configure/features/posix_getopt/mkc_posix_getopt.c
545share/mk-configure/features/progname/progname.c 561share/mk-configure/features/progname/mkc_progname.c
546share/mk-configure/features/raise_default_signal/raise_default_signal.c 562share/mk-configure/features/pwdgrp/mkc_pwdgrp.c
547share/mk-configure/features/reallocarray/reallocarray.c 563share/mk-configure/features/raise_default_signal/mkc_raise_default_signal.c
548share/mk-configure/features/strlcat/strlcat.c 564share/mk-configure/features/reallocarray/mkc_reallocarray.c
549share/mk-configure/features/strlcpy/strlcpy.c 565share/mk-configure/features/shquote/mkc_shquote.c
550share/mk-configure/features/strndup/strndup.c 566share/mk-configure/features/strlcat/mkc_strlcat.c
551share/mk-configure/features/strsep/strsep.c 567share/mk-configure/features/strlcpy/mkc_strlcpy.c
552share/mk-configure/features/vis/unvis.c 568share/mk-configure/features/strndup/mkc_strndup.c
553share/mk-configure/features/vis/vis.c 569share/mk-configure/features/strsep/mkc_strsep.c
554share/mk-configure/features/warn/warn.c 570share/mk-configure/features/vis/mkc_unvis.c
 571share/mk-configure/features/vis/mkc_vis.c
 572share/mk-configure/features/warn/mkc_warn.c
555share/mk-configure/mk/mkc.compiler_settings.mk 573share/mk-configure/mk/mkc.compiler_settings.mk
556share/mk-configure/mk/mkc.conf.mk 574share/mk-configure/mk/mkc.conf.mk
557share/mk-configure/mk/mkc.configure.mk 575share/mk-configure/mk/mkc.configure.mk
558share/mk-configure/mk/mkc.files.mk 576share/mk-configure/mk/mkc.files.mk
559share/mk-configure/mk/mkc.init.mk 577share/mk-configure/mk/mkc.init.mk
560share/mk-configure/mk/mkc.intexts.mk 578share/mk-configure/mk/mkc.intexts.mk
561share/mk-configure/mk/mkc.lib.mk 579share/mk-configure/mk/mkc.lib.mk
562share/mk-configure/mk/mkc.minitest.mk 580share/mk-configure/mk/mkc.minitest.mk
563share/mk-configure/mk/mkc.mk 581share/mk-configure/mk/mkc.mk
564share/mk-configure/mk/mkc.pkg-config.mk 582share/mk-configure/mk/mkc.pkg-config.mk
565share/mk-configure/mk/mkc.prog.mk 583share/mk-configure/mk/mkc.prog.mk
566share/mk-configure/mk/mkc.subdir.mk 584share/mk-configure/mk/mkc.subdir.mk
567share/mk-configure/mk/mkc.subprj.mk 585share/mk-configure/mk/mkc.subprj.mk
568share/mk-configure/mk/mkc.subprjs.mk 586share/mk-configure/mk/mkc.subprjs.mk
569share/mk-configure/mk/mkc_imp.arch.mk 587share/mk-configure/mk/mkc_imp.arch.mk
570share/mk-configure/mk/mkc_imp.checkprogs.mk 588share/mk-configure/mk/mkc_imp.checkprogs.mk
571share/mk-configure/mk/mkc_imp.compiler_settings.mk 589share/mk-configure/mk/mkc_imp.compiler_settings.mk
572share/mk-configure/mk/mkc_imp.compiler_type.mk 590share/mk-configure/mk/mkc_imp.compiler_type.mk
573share/mk-configure/mk/mkc_imp.conf-cleanup.mk 591share/mk-configure/mk/mkc_imp.conf-cleanup.mk
574share/mk-configure/mk/mkc_imp.conf-final.mk 592share/mk-configure/mk/mkc_imp.conf-final.mk
 593share/mk-configure/mk/mkc_imp.conf_custom.mk
 594share/mk-configure/mk/mkc_imp.conf_defines.mk
 595share/mk-configure/mk/mkc_imp.conf_funclibs.mk
 596share/mk-configure/mk/mkc_imp.conf_funcs.mk
 597share/mk-configure/mk/mkc_imp.conf_header_files.mk
 598share/mk-configure/mk/mkc_imp.conf_headers.mk
 599share/mk-configure/mk/mkc_imp.conf_members.mk
 600share/mk-configure/mk/mkc_imp.conf_opts.mk
 601share/mk-configure/mk/mkc_imp.conf_progs.mk
 602share/mk-configure/mk/mkc_imp.conf_prototypes.mk
 603share/mk-configure/mk/mkc_imp.conf_sizeof.mk
 604share/mk-configure/mk/mkc_imp.conf_types.mk
 605share/mk-configure/mk/mkc_imp.conf_vars.mk
575share/mk-configure/mk/mkc_imp.dep.mk 606share/mk-configure/mk/mkc_imp.dep.mk
576share/mk-configure/mk/mkc_imp.dpvars.mk 607share/mk-configure/mk/mkc_imp.dpvars.mk
577share/mk-configure/mk/mkc_imp.f_CIRCLEQ.mk 608share/mk-configure/mk/mkc_imp.f_CIRCLEQ.mk
578share/mk-configure/mk/mkc_imp.f_LIST.mk 609share/mk-configure/mk/mkc_imp.f_LIST.mk
579share/mk-configure/mk/mkc_imp.f_RB.mk 610share/mk-configure/mk/mkc_imp.f_RB.mk
580share/mk-configure/mk/mkc_imp.f_SIMPLEQ.mk 611share/mk-configure/mk/mkc_imp.f_SIMPLEQ.mk
581share/mk-configure/mk/mkc_imp.f_SLIST.mk 612share/mk-configure/mk/mkc_imp.f_SLIST.mk
582share/mk-configure/mk/mkc_imp.f_SPLAY.mk 613share/mk-configure/mk/mkc_imp.f_SPLAY.mk
583share/mk-configure/mk/mkc_imp.f_STAILQ.mk 614share/mk-configure/mk/mkc_imp.f_STAILQ.mk
584share/mk-configure/mk/mkc_imp.f_TAILQ.mk 615share/mk-configure/mk/mkc_imp.f_TAILQ.mk
585share/mk-configure/mk/mkc_imp.f_arc4random.mk 616share/mk-configure/mk/mkc_imp.f_arc4random.mk
586share/mk-configure/mk/mkc_imp.f_bswap.mk 617share/mk-configure/mk/mkc_imp.f_bswap.mk
587share/mk-configure/mk/mkc_imp.f_dprintf.mk 618share/mk-configure/mk/mkc_imp.f_dprintf.mk
588share/mk-configure/mk/mkc_imp.f_efun.mk 619share/mk-configure/mk/mkc_imp.f_efun.mk
589share/mk-configure/mk/mkc_imp.f_err.mk 620share/mk-configure/mk/mkc_imp.f_err.mk
590share/mk-configure/mk/mkc_imp.f_errc.mk 621share/mk-configure/mk/mkc_imp.f_errc.mk
591share/mk-configure/mk/mkc_imp.f_fgetln.mk 622share/mk-configure/mk/mkc_imp.f_fgetln.mk
592share/mk-configure/mk/mkc_imp.f_fparseln.mk 623share/mk-configure/mk/mkc_imp.f_fparseln.mk
593share/mk-configure/mk/mkc_imp.f_fts.mk 624share/mk-configure/mk/mkc_imp.f_fts.mk
594share/mk-configure/mk/mkc_imp.f_getdelim.mk 625share/mk-configure/mk/mkc_imp.f_getdelim.mk
595share/mk-configure/mk/mkc_imp.f_getline.mk 626share/mk-configure/mk/mkc_imp.f_getline.mk
 627share/mk-configure/mk/mkc_imp.f_humanize_number.mk
596share/mk-configure/mk/mkc_imp.f_libdl.mk 628share/mk-configure/mk/mkc_imp.f_libdl.mk
597share/mk-configure/mk/mkc_imp.f_libl.mk 629share/mk-configure/mk/mkc_imp.f_libl.mk
598share/mk-configure/mk/mkc_imp.f_libm.mk 630share/mk-configure/mk/mkc_imp.f_libm.mk
599share/mk-configure/mk/mkc_imp.f_posix_getopt.mk 631share/mk-configure/mk/mkc_imp.f_posix_getopt.mk
600share/mk-configure/mk/mkc_imp.f_progname.mk 632share/mk-configure/mk/mkc_imp.f_progname.mk
 633share/mk-configure/mk/mkc_imp.f_pwdgrp.mk
601share/mk-configure/mk/mkc_imp.f_raise_default_signal.mk 634share/mk-configure/mk/mkc_imp.f_raise_default_signal.mk
602share/mk-configure/mk/mkc_imp.f_reallocarray.mk 635share/mk-configure/mk/mkc_imp.f_reallocarray.mk
 636share/mk-configure/mk/mkc_imp.f_shquote.mk
603share/mk-configure/mk/mkc_imp.f_strlcat.mk 637share/mk-configure/mk/mkc_imp.f_strlcat.mk
604share/mk-configure/mk/mkc_imp.f_strlcpy.mk 638share/mk-configure/mk/mkc_imp.f_strlcpy.mk
605share/mk-configure/mk/mkc_imp.f_strndup.mk 639share/mk-configure/mk/mkc_imp.f_strndup.mk
606share/mk-configure/mk/mkc_imp.f_strsep.mk 640share/mk-configure/mk/mkc_imp.f_strsep.mk
607share/mk-configure/mk/mkc_imp.f_vis.mk 641share/mk-configure/mk/mkc_imp.f_vis.mk
608share/mk-configure/mk/mkc_imp.f_warn.mk 642share/mk-configure/mk/mkc_imp.f_warn.mk
609share/mk-configure/mk/mkc_imp.files.mk 643share/mk-configure/mk/mkc_imp.files.mk
610share/mk-configure/mk/mkc_imp.final.mk 644share/mk-configure/mk/mkc_imp.final.mk
611share/mk-configure/mk/mkc_imp.foreign_autotools.mk 645share/mk-configure/mk/mkc_imp.foreign_autotools.mk
612share/mk-configure/mk/mkc_imp.help.mk 646share/mk-configure/mk/mkc_imp.help.mk
613share/mk-configure/mk/mkc_imp.inc.mk 647share/mk-configure/mk/mkc_imp.inc.mk
614share/mk-configure/mk/mkc_imp.info.mk 648share/mk-configure/mk/mkc_imp.info.mk
615share/mk-configure/mk/mkc_imp.intexts.mk 649share/mk-configure/mk/mkc_imp.intexts.mk

cvs diff -r1.27 -r1.28 pkgsrc/devel/mk-configure/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/mk-configure/distinfo 2020/11/26 19:47:54 1.27
+++ pkgsrc/devel/mk-configure/distinfo 2021/01/06 13:05:50 1.28
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.27 2020/11/26 19:47:54 cheusov Exp $ 1$NetBSD: distinfo,v 1.28 2021/01/06 13:05:50 cheusov Exp $
2 2
3SHA1 (mk-configure-0.35.0.tar.gz) = 0a5a173f01a6b2e5ad366ccf1ff8f9ace15fca80 3SHA1 (mk-configure-0.36.0.tar.gz) = 94e1525c04c24c8f1c9f255dcd9ea11de08399fd
4RMD160 (mk-configure-0.35.0.tar.gz) = 7c852d55ceb114631bb1c578e3f54712fcaff557 4RMD160 (mk-configure-0.36.0.tar.gz) = f483ba323c7fdd21a921544dea2b8af06124b216
5SHA512 (mk-configure-0.35.0.tar.gz) = 2bec7a07786b887188e4ac529eb6c83187525efe065faedc004d9548dd66e3ff3ca28df83a1be1848e5aa58137fbe2b5d3b31bb58de9cf1240d82569a10912d4 5SHA512 (mk-configure-0.36.0.tar.gz) = ce0b586601a6112218501de355ef4d2ca6cf7a0c4b040ddafa11c3c948eb029bd99402c2585013b3f0d300e266c689170a11d18af4aa8542f0a72ef4aa1b2a09
6Size (mk-configure-0.35.0.tar.gz) = 354653 bytes 6Size (mk-configure-0.36.0.tar.gz) = 363486 bytes

cvs diff -r1.9 -r1.10 pkgsrc/devel/mk-configure/mk-c.mk (expand / switch to unified diff)

--- pkgsrc/devel/mk-configure/mk-c.mk 2020/03/30 14:10:55 1.9
+++ pkgsrc/devel/mk-configure/mk-c.mk 2021/01/06 13:05:50 1.10
@@ -1,20 +1,21 @@ @@ -1,20 +1,21 @@
1# $NetBSD: mk-c.mk,v 1.9 2020/03/30 14:10:55 cheusov Exp $ 1# $NetBSD: mk-c.mk,v 1.10 2021/01/06 13:05:50 cheusov Exp $
2 2
3TOOL_DEPENDS+= ${BUILDLINK_API_DEPENDS.mk-c}:${BUILDLINK_PKGSRCDIR.mk-c} 3TOOL_DEPENDS+= ${BUILDLINK_API_DEPENDS.mk-c}:${BUILDLINK_PKGSRCDIR.mk-c}
4 4
5MAKE_PROGRAM= ${PREFIX}/bin/mkcmake 5MAKE_PROGRAM= ${PREFIX}/bin/mkcmake
6MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR} INSTALL=${INSTALL:Q} 6MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR}
7MAKE_ENV+= SYSCONFDIR=${PKG_SYSCONFDIR} 7MAKE_ENV+= SYSCONFDIR=${PKG_SYSCONFDIR}
 8MAKE_ENV+= MKCOMPILERSETTINGS=yes
8CONFIGURE_TARGET?= configure 9CONFIGURE_TARGET?= configure
9 10
10do-configure: 11do-configure:
11 set -e; cd ${WRKSRC}; \ 12 set -e; cd ${WRKSRC}; \
12 env ${MAKE_ENV} \ 13 env ${MAKE_ENV} \
13 ${MAKE_PROGRAM} ${MAKE_FLAGS} ${BUILD_MAKE_FLAGS} \ 14 ${MAKE_PROGRAM} ${MAKE_FLAGS} ${BUILD_MAKE_FLAGS} \
14 -f ${MAKE_FILE} ${CONFIGURE_TARGET} 15 -f ${MAKE_FILE} ${CONFIGURE_TARGET}
15 16
16### 17###
17BUILDLINK_TREE+= mk-c 18BUILDLINK_TREE+= mk-c
18 19
19.if !defined(MK_CONFIGURE_BUILDLINK3_MK) 20.if !defined(MK_CONFIGURE_BUILDLINK3_MK)
20MK_CONFIGURE_BUILDLINK3_MK:= 21MK_CONFIGURE_BUILDLINK3_MK:=