Blame m4/ax_append_flag.m4

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