Blame m4/ax_append_flag.m4

Packit 4b6dd7
# ===========================================================================
Packit 4b6dd7
#      https://www.gnu.org/software/autoconf-archive/ax_append_flag.html
Packit 4b6dd7
# ===========================================================================
Packit 4b6dd7
#
Packit 4b6dd7
# SYNOPSIS
Packit 4b6dd7
#
Packit 4b6dd7
#   AX_APPEND_FLAG(FLAG, [FLAGS-VARIABLE])
Packit 4b6dd7
#
Packit 4b6dd7
# DESCRIPTION
Packit 4b6dd7
#
Packit 4b6dd7
#   FLAG is appended to the FLAGS-VARIABLE shell variable, with a space
Packit 4b6dd7
#   added in between.
Packit 4b6dd7
#
Packit 4b6dd7
#   If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
Packit 4b6dd7
#   CFLAGS) is used.  FLAGS-VARIABLE is not changed if it already contains
Packit 4b6dd7
#   FLAG.  If FLAGS-VARIABLE is unset in the shell, it is set to exactly
Packit 4b6dd7
#   FLAG.
Packit 4b6dd7
#
Packit 4b6dd7
#   NOTE: Implementation based on AX_CFLAGS_GCC_OPTION.
Packit 4b6dd7
#
Packit 4b6dd7
# LICENSE
Packit 4b6dd7
#
Packit 4b6dd7
#   Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
Packit 4b6dd7
#   Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
Packit 4b6dd7
#
Packit 4b6dd7
#   This program is free software: you can redistribute it and/or modify it
Packit 4b6dd7
#   under the terms of the GNU General Public License as published by the
Packit 4b6dd7
#   Free Software Foundation, either version 3 of the License, or (at your
Packit 4b6dd7
#   option) any later version.
Packit 4b6dd7
#
Packit 4b6dd7
#   This program is distributed in the hope that it will be useful, but
Packit 4b6dd7
#   WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 4b6dd7
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Packit 4b6dd7
#   Public License for more details.
Packit 4b6dd7
#
Packit 4b6dd7
#   You should have received a copy of the GNU General Public License along
Packit 4b6dd7
#   with this program. If not, see <https://www.gnu.org/licenses/>.
Packit 4b6dd7
#
Packit 4b6dd7
#   As a special exception, the respective Autoconf Macro's copyright owner
Packit 4b6dd7
#   gives unlimited permission to copy, distribute and modify the configure
Packit 4b6dd7
#   scripts that are the output of Autoconf when processing the Macro. You
Packit 4b6dd7
#   need not follow the terms of the GNU General Public License when using
Packit 4b6dd7
#   or distributing such scripts, even though portions of the text of the
Packit 4b6dd7
#   Macro appear in them. The GNU General Public License (GPL) does govern
Packit 4b6dd7
#   all other use of the material that constitutes the Autoconf Macro.
Packit 4b6dd7
#
Packit 4b6dd7
#   This special exception to the GPL applies to versions of the Autoconf
Packit 4b6dd7
#   Macro released by the Autoconf Archive. When you make and distribute a
Packit 4b6dd7
#   modified version of the Autoconf Macro, you may extend this special
Packit 4b6dd7
#   exception to the GPL to apply to your modified version as well.
Packit 4b6dd7
Packit 4b6dd7
#serial 7
Packit 4b6dd7
Packit 4b6dd7
AC_DEFUN([AX_APPEND_FLAG],
Packit 4b6dd7
[dnl
Packit 4b6dd7
AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_SET_IF
Packit 4b6dd7
AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])
Packit 4b6dd7
AS_VAR_SET_IF(FLAGS,[
Packit 4b6dd7
  AS_CASE([" AS_VAR_GET(FLAGS) "],
Packit 4b6dd7
    [*" $1 "*], [AC_RUN_LOG([: FLAGS already contains $1])],
Packit 4b6dd7
    [
Packit 4b6dd7
     AS_VAR_APPEND(FLAGS,[" $1"])
Packit 4b6dd7
     AC_RUN_LOG([: FLAGS="$FLAGS"])
Packit 4b6dd7
    ])
Packit 4b6dd7
  ],
Packit 4b6dd7
  [
Packit 4b6dd7
  AS_VAR_SET(FLAGS,[$1])
Packit 4b6dd7
  AC_RUN_LOG([: FLAGS="$FLAGS"])
Packit 4b6dd7
  ])
Packit 4b6dd7
AS_VAR_POPDEF([FLAGS])dnl
Packit 4b6dd7
])dnl AX_APPEND_FLAG