The branch main has been updated by sjg:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=c59c3bf34db360695f07735bebc76a768cac5afc

commit c59c3bf34db360695f07735bebc76a768cac5afc
Merge: ab8f59ceaf70 368b06ce6b01
Author:     Simon J. Gerraty <[email protected]>
AuthorDate: 2024-03-14 04:54:47 +0000
Commit:     Simon J. Gerraty <[email protected]>
CommitDate: 2024-03-14 04:56:57 +0000

    Merge bmake-20240309
    
    Merge commit '368b06ce6b0135d6de13f7265f6dcbaeb791b3bb'

 contrib/bmake/ChangeLog                      |   57 +
 contrib/bmake/Makefile                       |    7 +-
 contrib/bmake/VERSION                        |    2 +-
 contrib/bmake/arch.c                         |    8 +-
 contrib/bmake/bmake.1                        |   22 +-
 contrib/bmake/bmake.cat1                     | 2564 +++++++++-----------------
 contrib/bmake/boot-strap                     |   17 +-
 contrib/bmake/compat.c                       |    8 +-
 contrib/bmake/cond.c                         |   66 +-
 contrib/bmake/config.h.in                    |    3 +
 contrib/bmake/configure                      |   24 +-
 contrib/bmake/configure.in                   |    5 +-
 contrib/bmake/for.c                          |    6 +-
 contrib/bmake/import.sh                      |    2 +
 contrib/bmake/install-sh                     |    4 +-
 contrib/bmake/job.c                          |    8 +-
 contrib/bmake/main.c                         |   39 +-
 contrib/bmake/make-conf.h                    |   50 +-
 contrib/bmake/make.1                         |   22 +-
 contrib/bmake/make.h                         |    5 +-
 contrib/bmake/mk/ChangeLog                   |   80 +
 contrib/bmake/mk/FILES                       |    2 +
 contrib/bmake/mk/auto.dep.mk                 |    6 +-
 contrib/bmake/mk/auto.obj.mk                 |    4 +-
 contrib/bmake/mk/autoconf.mk                 |   21 +-
 contrib/bmake/mk/autodep.mk                  |   91 +-
 contrib/bmake/mk/cc-wrap.mk                  |    4 +-
 contrib/bmake/mk/ccm.dep.mk                  |   60 +
 contrib/bmake/mk/compiler.mk                 |    6 +-
 contrib/bmake/mk/cython.mk                   |    4 +-
 contrib/bmake/mk/dep.mk                      |   19 +-
 contrib/bmake/mk/dirdeps-cache-update.mk     |    4 +-
 contrib/bmake/mk/dirdeps-options.mk          |    4 +-
 contrib/bmake/mk/dirdeps-targets.mk          |    7 +-
 contrib/bmake/mk/doc.mk                      |    9 +-
 contrib/bmake/mk/dpadd.mk                    |    6 +-
 contrib/bmake/mk/files.mk                    |    4 +-
 contrib/bmake/mk/host-target.mk              |   16 +-
 contrib/bmake/mk/inc.mk                      |    4 +-
 contrib/bmake/mk/init.mk                     |   29 +-
 contrib/bmake/mk/install-mk                  |    4 +-
 contrib/bmake/mk/install-new.mk              |    4 +-
 contrib/bmake/mk/install-sh                  |    4 +-
 contrib/bmake/mk/java.mk                     |    3 +-
 contrib/bmake/mk/jobs.mk                     |    4 +-
 contrib/bmake/mk/ldorder.mk                  |    4 +-
 contrib/bmake/mk/lib.mk                      |   28 +-
 contrib/bmake/mk/libnames.mk                 |    4 +-
 contrib/bmake/mk/libs.mk                     |    4 +-
 contrib/bmake/mk/links.mk                    |    4 +-
 contrib/bmake/mk/man.mk                      |   22 +-
 contrib/bmake/mk/manifest.mk                 |    4 +-
 contrib/bmake/mk/meta.autodep.mk             |   14 +-
 contrib/bmake/mk/meta.stage.mk               |    6 +-
 contrib/bmake/mk/meta.subdir.mk              |    4 +-
 contrib/bmake/mk/meta.sys.mk                 |   12 +-
 contrib/bmake/mk/meta2deps.py                |   13 +-
 contrib/bmake/mk/meta2deps.sh                |    4 +-
 contrib/bmake/mk/mkopt.sh                    |    4 +-
 contrib/bmake/mk/newlog.sh                   |    4 +-
 contrib/bmake/mk/obj.mk                      |   11 +-
 contrib/bmake/mk/options.mk                  |    4 +-
 contrib/bmake/mk/own.mk                      |   30 +-
 contrib/bmake/mk/posix.mk                    |    4 +-
 contrib/bmake/mk/prlist.mk                   |    4 +-
 contrib/bmake/mk/prog.mk                     |   46 +-
 contrib/bmake/mk/progs.mk                    |    4 +-
 contrib/bmake/mk/rst2htm.mk                  |    4 +-
 contrib/bmake/mk/scripts.mk                  |    4 +-
 contrib/bmake/mk/srctop.mk                   |    4 +-
 contrib/bmake/mk/stage-install.sh            |    4 +-
 contrib/bmake/mk/subdir.mk                   |  131 +-
 contrib/bmake/mk/suffixes.mk                 |  195 ++
 contrib/bmake/mk/sys.clean-env.mk            |    4 +-
 contrib/bmake/mk/sys.debug.mk                |    4 +-
 contrib/bmake/mk/sys.dependfile.mk           |    4 +-
 contrib/bmake/mk/sys.dirdeps.mk              |    9 +-
 contrib/bmake/mk/sys.mk                      |   19 +-
 contrib/bmake/mk/sys.vars.mk                 |    4 +-
 contrib/bmake/mk/sys/Generic.mk              |  182 +-
 contrib/bmake/mk/target-flags.mk             |    4 +-
 contrib/bmake/mk/warnings.mk                 |    4 +-
 contrib/bmake/mk/whats.mk                    |    4 +-
 contrib/bmake/mk/yacc.mk                     |    4 +-
 contrib/bmake/parse.c                        |   22 +-
 contrib/bmake/suff.c                         |    8 +-
 contrib/bmake/targ.c                         |    5 +-
 contrib/bmake/unit-tests/Makefile            |   11 +-
 contrib/bmake/unit-tests/var-scope-local.exp |   14 +-
 contrib/bmake/unit-tests/var-scope-local.mk  |   19 +-
 contrib/bmake/unit-tests/varmod-indirect.mk  |   28 +-
 contrib/bmake/unit-tests/varmod.exp          |   10 +-
 contrib/bmake/unit-tests/varmod.mk           |    5 +-
 contrib/bmake/var.c                          |   75 +-
 94 files changed, 1938 insertions(+), 2395 deletions(-)

diff --cc contrib/bmake/Makefile
index 22e92b4da9ac,000000000000..3332dcdeaf2d
mode 100644,000000..100644
--- a/contrib/bmake/Makefile
+++ b/contrib/bmake/Makefile
@@@ -1,238 -1,0 +1,237 @@@
- #     $Id: Makefile,v 1.125 2023/05/17 00:15:46 sjg Exp $
++#     $Id: Makefile,v 1.126 2024/03/10 17:46:44 sjg Exp $
 +
 +PROG= bmake
 +
 +SRCS= \
 +      arch.c \
 +      buf.c \
 +      compat.c \
 +      cond.c \
 +      dir.c \
 +      for.c \
 +      hash.c \
 +      job.c \
 +      lst.c \
 +      main.c \
 +      make.c \
 +      make_malloc.c \
 +      meta.c \
 +      metachar.c \
 +      parse.c \
 +      str.c \
 +      suff.c \
 +      targ.c \
 +      trace.c \
 +      util.c \
 +      var.c
 +
 +.-include "VERSION"
 +.-include "Makefile.inc"
 +
 +# this file gets generated by configure
 +.-include "Makefile.config"
 +
 +.if !empty(LIBOBJS)
 +SRCS+= ${LIBOBJS:T:.o=.c}
 +.endif
 +
 +# just in case
 +prefix?= /usr
 +srcdir?= ${.CURDIR}
 +
 +DEFAULT_SYS_PATH?= ${prefix}/share/mk
 +
 +CPPFLAGS+= -DUSE_META
 +CFLAGS+= ${CPPFLAGS}
 +CFLAGS+= -D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\"
 +CFLAGS+= -I. -I${srcdir} ${XDEFS} -DMAKE_NATIVE
 +CFLAGS+= ${COPTS.${.ALLSRC:M*.c:T:u}}
 +COPTS.main.c+= "-DMAKE_VERSION=\"${_MAKE_VERSION}\""
 +
 +.for x in FORCE_MACHINE FORCE_MACHINE_ARCH
 +.ifdef $x
 +COPTS.main.c+= "-D$x=\"${$x}\""
 +.endif
 +.endfor
 +
 +# meta mode can be useful even without filemon
 +# should be set by now
 +USE_FILEMON ?= no
 +.if ${USE_FILEMON:tl} != "no"
 +.PATH:        ${srcdir}/filemon
 +SRCS+=        filemon_${USE_FILEMON}.c
 +COPTS.meta.c+= -DUSE_FILEMON -DUSE_FILEMON_${USE_FILEMON:tu}
 +COPTS.job.c+= ${COPTS.meta.c}
 +
 +.if ${USE_FILEMON} == "dev"
 +FILEMON_H ?= /usr/include/dev/filemon/filemon.h
 +.if exists(${FILEMON_H}) && ${FILEMON_H:T} == "filemon.h"
 +COPTS.filemon_dev.c += -DHAVE_FILEMON_H -I${FILEMON_H:H}
 +.endif
 +.elif ${USE_FILEMON} == "ktrace"
 +COPTS.filemon_ktrace.c += -Wno-error=unused-parameter
 +.endif
 +
 +.endif                                # USE_FILEMON
 +
 +.PATH:        ${srcdir}
 +
 +.if make(obj) || make(clean)
 +SUBDIR+= unit-tests
 +.endif
 +
 +# start-delete1 for bsd.after-import.mk
 +# we skip a lot of this when building as part of FreeBSD etc.
 +
 +# list of OS's which are derrived from BSD4.4
 +BSD44_LIST= NetBSD FreeBSD OpenBSD DragonFly MirBSD Bitrig
 +# we are...
 +OS := ${.MAKE.OS:U${uname -s:L:sh}}
 +# are we 4.4BSD ?
 +isBSD44:=${BSD44_LIST:M${OS}}
 +
- .if ${isBSD44} == "" && ${OS:NDarwin:NLinux} != ""
- MANTARGET= cat
- INSTALL?=${srcdir}/install-sh
++.if ${isBSD44} == "" && ${OS:NCYGWIN*:NDarwin:NLinux} != ""
++MANTARGET?= cat
 +.if ${MACHINE} == "sun386"
 +# even I don't have one of these anymore :-)
 +CFLAGS+= -DPORTAR
 +.elif ${OS} != "SunOS"
 +# assume the worst
 +SRCS+= sigcompat.c
 +CFLAGS+= -DSIGNAL_FLAGS=SA_RESTART
 +.endif
 +.else
 +MANTARGET?= man
 +.endif
 +
 +# turn this on by default - ignored if we are root
 +WITH_INSTALL_AS_USER=
 +
 +# suppress with -DWITHOUT_*
 +OPTIONS_DEFAULT_YES+= \
 +      AUTOCONF_MK \
 +      INSTALL_MK \
 +      PROG_LINK
 +
 +OPTIONS_DEFAULT_NO+= \
 +      PROG_VERSION
 +
 +# process options now
 +.include <own.mk>
 +
 +.if ${MK_PROG_VERSION} == "yes"
 +PROG_NAME= ${PROG}-${_MAKE_VERSION}
 +.if ${MK_PROG_LINK} == "yes"
 +SYMLINKS+= ${PROG_NAME} ${BINDIR}/${PROG}
 +.endif
 +.endif
 +
 +EXTRACT_MAN=no
 +# end-delete1
 +
 +MAN= ${PROG}.1
 +MAN1= ${MAN}
 +
 +.if ${PROG} != "make"
 +CLEANFILES+= my.history
 +.if make(${MAN}) || !exists(${srcdir}/${MAN})
 +my.history:
 +      @(echo ".Nm"; \
 +      echo "is derived from NetBSD"; \
 +      echo ".Xr make 1 ."; \
 +      echo "It uses autoconf to facilitate portability to other platforms."; \
 +      echo ".Pp") > $@
 +
 +.NOPATH: ${MAN}
 +${MAN}:       make.1 my.history
 +      @echo making $@
 +      @sed \
 +      -e '/^.Dt/s/MAKE/${PROG:tu}/' \
 +      -e 's/^.Nx/NetBSD/' \
 +      -e '/^.Nm/s/make/${PROG}/' \
 +      -e '/^.Sh HISTORY/rmy.history' \
 +      -e '/^.Sh HISTORY/,$$s,^.Nm,make,' ${srcdir}/make.1 > $@
 +
 +all beforeinstall: ${MAN}
 +_mfromdir=.
 +.endif
 +.endif
 +
 +MANTARGET?= cat
 +MANDEST?= ${MANDIR}/${MANTARGET}1
 +
 +.if ${MANTARGET} == "cat"
 +_mfromdir=${srcdir}
 +.endif
 +
 +.include <prog.mk>
 +
 +CPPFLAGS+= -DMAKE_NATIVE -DHAVE_CONFIG_H
 +COPTS.var.c += -Wno-cast-qual
 +COPTS.job.c += -Wno-format-nonliteral
 +COPTS.parse.c += -Wno-format-nonliteral
 +COPTS.var.c += -Wno-format-nonliteral
 +
 +# Force these
 +SHAREDIR= ${SHAREDIR.bmake:U${prefix}/share}
 +BINDIR= ${BINDIR.bmake:U${prefix}/bin}
 +MANDIR= ${MANDIR.bmake:U${SHAREDIR}/man}
 +
 +${OBJS}: config.h
 +
 +# start-delete2 for bsd.after-import.mk
 +
 +# make sure that MAKE_VERSION gets updated.
 +main.o: ${srcdir}/VERSION
 +
 +.if ${MK_AUTOCONF_MK} == "yes"
 +CONFIGURE_DEPS += ${.CURDIR}/VERSION
 +# we do not need or want the generated makefile
 +CONFIGURE_ARGS += --without-makefile
 +AUTOCONF_GENERATED_MAKEFILE = Makefile.config
 +.include <autoconf.mk>
 +.endif
 +SHARE_MK ?= ${SHAREDIR}/mk
 +MKSRC = ${srcdir}/mk
 +INSTALL ?= ${srcdir}/install-sh
 +
 +.if ${MK_INSTALL_MK} == "yes"
 +install: install-mk
 +.endif
 +
 +beforeinstall:
 +      test -d ${DESTDIR}${BINDIR} || ${INSTALL} -m ${DIRMODE} -d 
${DESTDIR}${BINDIR}
 +      test -d ${DESTDIR}${MANDEST} || ${INSTALL} -m ${DIRMODE} -d 
${DESTDIR}${MANDEST}
 +
 +install-mk:
 +.if exists(${MKSRC}/install-mk)
 +      test -d ${DESTDIR}${SHARE_MK} || ${INSTALL} -m ${DIRMODE} -d 
${DESTDIR}${SHARE_MK}
 +      sh ${MKSRC}/install-mk -v -m ${NONBINMODE} ${DESTDIR}${SHARE_MK}
 +.else
 +      @echo need to unpack mk.tar.gz under ${srcdir} or set MKSRC; false
 +.endif
 +# end-delete2
 +
 +# A simple unit-test driver to help catch regressions
 +TEST_MAKE ?= ${.OBJDIR}/${PROG:T}
 +accept test: .NOMETA
 +      cd ${.CURDIR}/unit-tests && \
 +      MAKEFLAGS= ${TEST_MAKE} -r -m / ${.TARGET} ${TESTS:DTESTS=${TESTS:Q}}
 +
 +
 +.if make(test) && ${MK_AUTO_OBJ} == "yes"
 +# The test target above visits unit-tests with -r -m /
 +# which prevents MK_AUTO_OBJ doing its job
 +# so do it here
 +.if defined(MAKEOBJDIRPREFIX) || ${MAKEOBJDIR:U:M*/*} != ""
 +_utobj = ${.OBJDIR}/unit-tests
 +.else
 +_utobj = ${.CURDIR}/unit-tests/${MAKEOBJDIR:Uobj}
 +.endif
 +utobj: .NOMETA
 +      @test -d ${_utobj} && exit 0; \
 +      echo "[Creating ${_utobj}...]"; \
 +      umask ${OBJDIR_UMASK:U002}; \
 +      mkdir -p ${_utobj}
 +test: utobj
 +.endif
diff --cc contrib/bmake/mk/ccm.dep.mk
index 000000000000,1809a72e7310..1809a72e7310
mode 000000,100644..100644
--- a/contrib/bmake/mk/ccm.dep.mk
+++ b/contrib/bmake/mk/ccm.dep.mk
diff --cc contrib/bmake/mk/meta2deps.sh
index d590a383f82e,000000000000..4c1b674f7b63
mode 100755,000000..100755
--- a/contrib/bmake/mk/meta2deps.sh
+++ b/contrib/bmake/mk/meta2deps.sh
@@@ -1,455 -1,0 +1,457 @@@
 +#!/bin/sh
 +
 +# NAME:
 +#     meta2deps.sh - extract useful info from .meta files
 +#
 +# SYNOPSIS:
 +#     meta2deps.sh SB="SB" "meta" ...
 +#
 +# DESCRIPTION:
 +#     This script looks each "meta" file and extracts the
 +#     information needed to deduce build and src dependencies.
 +#
 +#     To do this, we extract the 'CWD' record as well as all the
 +#     syscall traces which describe 'R'ead, 'C'hdir and 'E'xec
 +#     syscalls.
 +#
 +#     The typical meta file looks like::
 +#.nf
 +#
 +#     # Meta data file "path"
 +#     CMD "command-line"
 +#     CWD "cwd"
 +#     TARGET "target"
 +#     -- command output --
 +#     -- filemon acquired metadata --
 +#     # buildmon version 2
 +#     V 2
 +#     E "pid" "path"
 +#     R "pid" "path"
 +#     C "pid" "cwd"
 +#     R "pid" "path"
 +#     X "pid" "status"
 +#.fi
 +#
 +#     The fact that all the syscall entry lines start with a single
 +#     character make these files quite easy to process using sed(1).
 +#
 +#     To simplify the logic the 'CWD' line is made to look like a
 +#     normal 'C'hdir entry, and "cwd" is remembered so that it can
 +#     be prefixed to any "path" which is not absolute.
 +#
 +#     If the "path" being read ends in '.srcrel' it is the content
 +#     of (actually the first line of) that file that we are
 +#     interested in.
 +#
 +#     Any "path" which lies outside of the sandbox "SB" is generally
 +#     not of interest and is ignored.
 +#
 +#     The output, is a set of absolute paths with "SB" like:
 +#.nf
 +#
 +#     $SB/obj-i386/bsd/include
 +#     $SB/obj-i386/bsd/lib/csu/i386
 +#     $SB/obj-i386/bsd/lib/libc
 +#     $SB/src/bsd/include
 +#     $SB/src/bsd/sys/i386/include
 +#     $SB/src/bsd/sys/sys
 +#     $SB/src/pan-release/rtsock
 +#     $SB/src/pfe-shared/include/jnx
 +#.fi
 +#
 +#     Which can then be further processed by 'gendirdeps.mk'
 +#
 +#     If we are passed 'DPDEPS='"dpdeps", then for each src file
 +#     outside of "CURDIR" we read, we output a line like:
 +#.nf
 +#
 +#     DPDEPS_$path += $RELDIR
 +#.fi
 +#
 +#     with "$path" geting turned into reldir's, so that we can end
 +#     up with a list of all the directories which depend on each src
 +#     file in another directory.  This can allow for efficient yet
 +#     complete testing of changes.
 +
 +
 +# RCSid:
- #     $Id: meta2deps.sh,v 1.20 2023/01/18 01:35:24 sjg Exp $
++#     $Id: meta2deps.sh,v 1.21 2024/02/17 17:26:57 sjg Exp $
 +
++# SPDX-License-Identifier: BSD-2-Clause
++#
 +# Copyright (c) 2010-2013, Juniper Networks, Inc.
 +# All rights reserved.
 +#
 +# Redistribution and use in source and binary forms, with or without
 +# modification, are permitted provided that the following conditions
 +# are met:
 +# 1. Redistributions of source code must retain the above copyright
 +#    notice, this list of conditions and the following disclaimer.
 +# 2. Redistributions in binary form must reproduce the above copyright
 +#    notice, this list of conditions and the following disclaimer in the
 +#    documentation and/or other materials provided with the distribution.
 +#
 +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 +
 +meta2src() {
 +    cat /dev/null "$@" |
 +    sed -n '/^R .*\.[chyl]$/s,^..[0-9]* ,,p' |
 +    sort -u
 +}
 +
 +meta2dirs() {
 +    cat /dev/null "$@" |
 +    sed -n '/^R .*\/.*\.[a-z0-9][^\/]*$/s,^..[0-9]* \(.*\)/[^/]*$,\1,p' |
 +    sort -u
 +}
 +
 +add_list() {
 +    sep=' '
 +    suffix=
 +    while :
 +    do
 +      case "$1" in
 +      "|") sep="$1"; shift;;
 +      -s) suffix="$2"; shift 2;;
 +      *) break;;
 +      esac
 +    done
 +    name=$1
 +    shift
 +    eval list="\$$name"
 +    for top in "$@"
 +    do
 +      case "$sep$list$sep" in
 +      *"$sep$top$suffix$sep"*) continue;;
 +      esac
 +      list="${list:+$list$sep}$top$suffix"
 +    done
 +    eval "$name=\"$list\""
 +}
 +
 +# some Linux systems have deprecated egrep in favor of grep -E
 +# but not everyone supports that
 +case "`echo bmake | egrep 'a|b' 2>&1`" in
 +bmake) ;;
 +*) egrep() { grep -E "$@"; }
 +esac
 +
 +_excludes_f() {
 +    egrep -v "$EXCLUDES"
 +}
 +
 +error() {
 +    echo "ERROR: $@" >&2
 +    exit 1
 +}
 +
 +meta2deps() {
 +    DPDEPS=
 +    SRCTOPS=$SRCTOP
 +    OBJROOTS=
 +    EXCLUDES=
 +    while :
 +    do
 +      case "$1" in
 +      *=*) eval export "$1"; shift;;
 +      -a) MACHINE_ARCH=$2; shift 2;;
 +      -m) MACHINE=$2; shift 2;;
 +      -C) CURDIR=$2; shift 2;;
 +      -H) HOST_TARGET=$2; shift 2;;
 +      -S) add_list SRCTOPS $2; shift 2;;
 +      -O) add_list OBJROOTS $2; shift 2;;
 +      -X) add_list EXCLUDES '|' $2; shift 2;;
 +      -R) RELDIR=$2; shift 2;;
 +      -T) TARGET_SPEC=$2; shift 2;;
 +      *) break;;
 +      esac
 +    done
 +
 +    _th= _o=
 +    case "$MACHINE" in
 +    host) _ht=$HOST_TARGET;;
 +    esac
 +
 +    for o in $OBJROOTS
 +    do
 +      case "$MACHINE,/$o/" in
 +      host,*$HOST_TARGET*) ;;
 +      *$MACHINE*|*${TARGET_SPEC:-$MACHINE}*) ;;
 +      *) add_list _o $o; continue;;
 +      esac
 +      for x in $_ht $TARGET_SPEC $MACHINE
 +      do
 +          case "$o" in
 +          "") continue;;
 +          */$x/) add_list _o ${o%$x/}; o=;;
 +          */$x) add_list _o ${o%$x}; o=;;
 +          *$x/) add_list _o ${o%$x/}; o=;;
 +          *$x) add_list _o ${o%$x}; o=;;
 +          esac
 +      done
 +    done
 +    OBJROOTS="$_o"
 +
 +    case "$OBJTOP" in
 +    "")
 +      for o in $OBJROOTS
 +      do
 +          OBJTOP=$o${TARGET_SPEC:-$MACHINE}
 +          break
 +      done
 +      ;;
 +    esac
 +    src_re=
 +    obj_re=
 +    add_list '|' -s '/*' src_re $SRCTOPS
 +    add_list '|' -s '*' obj_re $OBJROOTS
 +
 +    [ -z "$RELDIR" ] && unset DPDEPS
 +    tf=/tmp/m2d$$-$USER
 +    rm -f $tf.*
 +    trap 'rm -f $tf.*; trap 0' 0
 +
 +    > $tf.dirdep
 +    > $tf.qual
 +    > $tf.srcdep
 +    > $tf.srcrel
 +    > $tf.dpdeps
 +
 +    seenit=
 +    seensrc=
 +    lpid=
 +    case "$EXCLUDES" in
 +    "") _excludes=cat;;
 +    *) _excludes=_excludes_f;;
 +    esac
 +    # handle @list files
 +    case "$@" in
 +    *@[!.]*)
 +      for f in "$@"
 +      do
 +          case "$f" in
 +          *.meta) cat $f;;
 +          @*) xargs cat < ${f#@};;
 +          *) cat $f;;
 +          esac
 +      done
 +      ;;
 +    *) cat /dev/null "$@";;
 +    esac 2> /dev/null |
 +    sed -e 's,^CWD,C C,;/^[#CREFLMVX] /!d' -e "s,',,g" |
 +    $_excludes | ( version=no epids= xpids= eof_token=no
 +    while read op pid path junk
 +    do
 +      : op=$op pid=$pid path=$path
 +      # we track cwd and ldir (of interest) per pid
 +      # CWD is bmake's cwd
 +      case "$lpid,$pid" in
 +      ,C) CWD=$path cwd=$path ldir=$path
 +          if [ -z "$SB" ]; then
 +              SB=`echo $CWD | sed 's,/obj.*,,'`
 +          fi
 +          SRCTOP=${SRCTOP:-$SB/src}
 +          case "$verion" in
 +          no) ;;              # ignore
 +          0) error "no filemon data";;
 +          *) ;;
 +          esac
 +          version=0
 +          case "$eof_token" in
 +          no) ;;              # ignore
 +          0) error "truncated filemon data";;
 +          esac
 +          eof_token=0
 +          continue
 +          ;;
 +      $pid,$pid) ;;
 +      [1-9]*)
 +          case "$lpid" in
 +          "") ;;
 +          *) eval ldir_$lpid=$ldir;;
 +          esac
 +          eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD}
 +          lpid=$pid
 +          ;;
 +      esac
 +
 +      : op=$op path=$path
 +      case "$op,$path" in
 +      V,*) version=$pid; continue;;
 +      W,*srcrel|*.dirdep) continue;;
 +      C,*)
 +          case "$path" in
 +          /*) cwd=$path;;
 +          *) cwd=`cd $cwd/$path 2> /dev/null && /bin/pwd`;;
 +          esac
 +          # watch out for temp dirs that no longer exist
 +          test -d ${cwd:-/dev/null/no/such} || cwd=$CWD
 +          eval cwd_$pid=$cwd
 +          continue
 +          ;;
 +      F,*) # $path is new pid
 +          eval cwd_$path=$cwd ldir_$path=$ldir
 +          continue
 +          ;;
 +      \#,bye) eof_token=1; continue;;
 +      \#*) continue;;
 +      *)  dir=${path%/*}
 +          case "$op" in
 +          E)  # setid apps get no tracing so we won't see eXit
 +              case `'ls' -l $path 2> /dev/null | sed 's, .*,,'` in
 +              *s*) ;;
 +              *) epids="$epids $pid";;
 +              esac
 +              ;;
 +          X) xpids="$xpids $pid"; continue;;
 +          esac
 +          case "$path" in
 +          $src_re|$obj_re) ;;
 +          /*/stage/*) ;;
 +          /*) continue;;
 +          *)  for path in $ldir/$path $cwd/$path
 +              do
 +                      test -e $path && break
 +              done
 +              dir=${path%/*}
 +              ;;
 +          esac
 +          ;;
 +      esac
 +      # avoid repeating ourselves...
 +      case "$DPDEPS,$seensrc," in
 +      ,*)
 +          case ",$seenit," in
 +          *,$dir,*) continue;;
 +          esac
 +          ;;
 +      *,$path,*) continue;;
 +      esac
 +      # canonicalize if needed
 +      case "/$dir/" in
 +      */../*|*/./*)
 +          rdir=$dir
 +          dir=`cd $dir 2> /dev/null && /bin/pwd`
 +          seen="$rdir,$dir"
 +          ;;
 +      *)  seen=$dir;;
 +      esac
 +      case "$dir" in
 +      ${CURDIR:-.}|"") continue;;
 +      $src_re)
 +          # avoid repeating ourselves...
 +          case "$DPDEPS,$seensrc," in
 +          ,*)
 +              case ",$seenit," in
 +              *,$dir,*) continue;;
 +              esac
 +              ;;
 +          esac
 +          ;;
 +      *)
 +          case ",$seenit," in
 +          *,$dir,*) continue;;
 +          esac
 +          ;;
 +      esac
 +      if [ -d $path ]; then
 +          case "$path" in
 +          */..) ldir=${dir%/*};;
 +          *) ldir=$path;;
 +          esac
 +          continue
 +      fi
 +      [ -f $path ] || continue
 +      case "$dir" in
 +      $CWD) continue;;                # ignore
 +      $src_re)
 +          seenit="$seenit,$seen"
 +          echo $dir >> $tf.srcdep
 +          case "$DPDEPS,$reldir,$seensrc," in
 +          ,*) ;;
 +          *)  seensrc="$seensrc,$path"
 +              echo "DPDEPS_$dir/${path##*/} += $RELDIR" >> $tf.dpdeps
 +              ;;
 +          esac
 +          continue
 +          ;;
 +      esac
 +      # if there is a .dirdep we cannot skip
 +      # just because we've seen the dir before.
 +      if [ -s $path.dirdep ]; then
 +          # this file contains:
 +          # '# ${RELDIR}.<machine>'
 +          echo $path.dirdep >> $tf.qual
 +          continue
 +      elif [ -s $dir.dirdep ]; then
 +          echo $dir.dirdep >> $tf.qual
 +          seenit="$seenit,$seen"
 +          continue
 +      fi
 +      seenit="$seenit,$seen"
 +      case "$dir" in
 +      $obj_re)
 +          echo $dir;;
 +      esac
 +    done > $tf.dirdep
 +    : version=$version
 +    case "$version" in
 +    0) error "no filemon data";;
 +    esac
 +    : eof_token=$eof_token
 +    case "$eof_token" in
 +    0) error "truncated filemon data";;
 +    esac
 +    for p in $epids
 +    do
 +      : p=$p
 +      case " $xpids " in
 +      *" $p "*) ;;
 +      *) error "missing eXit for pid $p";;
 +      esac
 +    done ) || exit 1
 +    _nl=echo
 +    for f in $tf.dirdep $tf.qual $tf.srcdep
 +    do
 +      [ -s $f ] || continue
 +      case $f in
 +      *qual) # a list of .dirdep files
 +          # we can prefix everything with $OBJTOP to
 +          # tell gendirdeps.mk that these are
 +          # DIRDEP entries, since they are already
 +          # qualified with .<machine> as needed.
 +          # We strip .$MACHINE though
 +          xargs cat < $f | sort -u |
 +          sed "s,^# 
,,;s,^,$OBJTOP/,;s,\.${TARGET_SPEC:-$MACHINE}\$,,;s,\.$MACHINE\$,,"
 +          ;;
 +      *)  sort -u $f;;
 +      esac
 +      _nl=:
 +    done
 +    if [ -s $tf.dpdeps ]; then
 +      case "$DPDEPS" in
 +      */*) ;;
 +      *) echo > $DPDEPS;;             # the echo is needed!
 +      esac
 +      sort -u $tf.dpdeps |
 +      sed "s,${SRCTOP}/,,;s,${SB_BACKING_SB:-$SB}/src/,," >> $DPDEPS
 +    fi
 +    # ensure we produce _something_ else egrep -v gets upset
 +    $_nl
 +}
 +
 +case /$0 in
 +*/meta2dep*) meta2deps "$@";;
 +*/meta2dirs*) meta2dirs "$@";;
 +*/meta2src*) meta2src "$@";;
 +esac
diff --cc contrib/bmake/mk/suffixes.mk
index 000000000000,4c4c85e68220..4c4c85e68220
mode 000000,100644..100644
--- a/contrib/bmake/mk/suffixes.mk
+++ b/contrib/bmake/mk/suffixes.mk

Reply via email to