cee25393d8
- Fix P15-8-init-cycle-detection.patch: replace visiting+error with seen+silent-skip to eliminate 11 false-positive 'dependency cycle detected' errors on shared deps - Fix P0-daemon-fix-init-notify-unwrap.patch: remove eprintln! for missing INIT_NOTIFY (expected for oneshot_async services, ~7 daemons affected) - Fix driver-manager hotplug loop: add PERMANENTLY_SKIPPED static set shared between hotplug handler and DriverConfig::probe() to stop infinite re-probing of Fatal/NotSupported/deferred-exhausted device+driver pairs (e.g. ided) - Fix driver-manager log_timeline: suppress repeated EPIPE/ENOENT errors with AtomicI32 dedup and AtomicBool one-shot guards for boot timeline JSON - Add driver-manager SIGTERM handler, ACPI bus registration, --status mode, driver reap loop, graceful shutdown, and reduced deferred retries (30→3)
51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
# ===========================================================================
|
|
# https://www.gnu.org/software/autoconf-archive/ax_append_flag.html
|
|
# ===========================================================================
|
|
#
|
|
# SYNOPSIS
|
|
#
|
|
# AX_APPEND_FLAG(FLAG, [FLAGS-VARIABLE])
|
|
#
|
|
# DESCRIPTION
|
|
#
|
|
# FLAG is appended to the FLAGS-VARIABLE shell variable, with a space
|
|
# added in between.
|
|
#
|
|
# If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
|
|
# CFLAGS) is used. FLAGS-VARIABLE is not changed if it already contains
|
|
# FLAG. If FLAGS-VARIABLE is unset in the shell, it is set to exactly
|
|
# FLAG.
|
|
#
|
|
# NOTE: Implementation based on AX_CFLAGS_GCC_OPTION.
|
|
#
|
|
# LICENSE
|
|
#
|
|
# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
|
|
# Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
|
|
#
|
|
# Copying and distribution of this file, with or without modification, are
|
|
# permitted in any medium without royalty provided the copyright notice
|
|
# and this notice are preserved. This file is offered as-is, without any
|
|
# warranty.
|
|
|
|
#serial 8
|
|
|
|
AC_DEFUN([AX_APPEND_FLAG],
|
|
[dnl
|
|
AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_SET_IF
|
|
AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])
|
|
AS_VAR_SET_IF(FLAGS,[
|
|
AS_CASE([" AS_VAR_GET(FLAGS) "],
|
|
[*" $1 "*], [AC_RUN_LOG([: FLAGS already contains $1])],
|
|
[
|
|
AS_VAR_APPEND(FLAGS,[" $1"])
|
|
AC_RUN_LOG([: FLAGS="$FLAGS"])
|
|
])
|
|
],
|
|
[
|
|
AS_VAR_SET(FLAGS,[$1])
|
|
AC_RUN_LOG([: FLAGS="$FLAGS"])
|
|
])
|
|
AS_VAR_POPDEF([FLAGS])dnl
|
|
])dnl AX_APPEND_FLAG
|