Blame m4/ax_append_flag.m4

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