Blame m4/ax_cflags_gcc_option.m4

rpm-build d2b433
##### http://autoconf-archive.cryp.to/ax_cflags_gcc_option.html
rpm-build d2b433
#
rpm-build d2b433
# SYNOPSIS
rpm-build d2b433
#
rpm-build d2b433
#   AX_CFLAGS_GCC_OPTION (optionflag [,[shellvar][,[A][,[NA]]])
rpm-build d2b433
#
rpm-build d2b433
# DESCRIPTION
rpm-build d2b433
#
rpm-build d2b433
#   AX_CFLAGS_GCC_OPTION(-fvomit-frame) would show a message as like
rpm-build d2b433
#   "checking CFLAGS for gcc -fvomit-frame ... yes" and adds the
rpm-build d2b433
#   optionflag to CFLAGS if it is understood. You can override the
rpm-build d2b433
#   shellvar-default of CFLAGS of course. The order of arguments stems
rpm-build d2b433
#   from the explicit macros like AX_CFLAGS_WARN_ALL.
rpm-build d2b433
#
rpm-build d2b433
#   The cousin AX_CXXFLAGS_GCC_OPTION would check for an option to add
rpm-build d2b433
#   to CXXFLAGS - and it uses the autoconf setup for C++ instead of C
rpm-build d2b433
#   (since it is possible to use different compilers for C and C++).
rpm-build d2b433
#
rpm-build d2b433
#   The macro is a lot simpler than any special AX_CFLAGS_* macro (or
rpm-build d2b433
#   ac_cxx_rtti.m4 macro) but allows to check for arbitrary options.
rpm-build d2b433
#   However, if you use this macro in a few places, it would be great
rpm-build d2b433
#   if you would make up a new function-macro and submit it to the
rpm-build d2b433
#   ac-archive.
rpm-build d2b433
#
rpm-build d2b433
#     - $1 option-to-check-for : required ("-option" as non-value)
rpm-build d2b433
#     - $2 shell-variable-to-add-to : CFLAGS (or CXXFLAGS in the other case)
rpm-build d2b433
#     - $3 action-if-found : add value to shellvariable
rpm-build d2b433
#     - $4 action-if-not-found : nothing
rpm-build d2b433
#
rpm-build d2b433
#   note: in earlier versions, $1-$2 were swapped. We try to detect the
rpm-build d2b433
#   situation and accept a $2=~/-/ as being the old
rpm-build d2b433
#   option-to-check-for.
rpm-build d2b433
#
rpm-build d2b433
#   also: there are other variants that emerged from the original macro
rpm-build d2b433
#   variant which did just test an option to be possibly added.
rpm-build d2b433
#   However, some compilers accept an option silently, or possibly for
rpm-build d2b433
#   just another option that was not intended. Therefore, we have to do
rpm-build d2b433
#   a generic test for a compiler family. For gcc we check "-pedantic"
rpm-build d2b433
#   being accepted which is also understood by compilers who just want
rpm-build d2b433
#   to be compatible with gcc even when not being made from gcc
rpm-build d2b433
#   sources.
rpm-build d2b433
#
rpm-build d2b433
#   see also:
rpm-build d2b433
#
rpm-build d2b433
#         AX_CFLAGS_SUN_OPTION               AX_CFLAGS_HPUX_OPTION
rpm-build d2b433
#         AX_CFLAGS_AIX_OPTION               AX_CFLAGS_IRIX_OPTION
rpm-build d2b433
#
rpm-build d2b433
# LAST MODIFICATION
rpm-build d2b433
#
rpm-build d2b433
#   2006-12-12
rpm-build d2b433
#
rpm-build d2b433
# COPYLEFT
rpm-build d2b433
#
rpm-build d2b433
#   Copyright (c) 2006 Guido U. Draheim <guidod@gmx.de>
rpm-build d2b433
#
rpm-build d2b433
#   This program is free software; you can redistribute it and/or
rpm-build d2b433
#   modify it under the terms of the GNU General Public License as
rpm-build d2b433
#   published by the Free Software Foundation; either version 2 of the
rpm-build d2b433
#   License, or (at your option) any later version.
rpm-build d2b433
#
rpm-build d2b433
#   This program is distributed in the hope that it will be useful, but
rpm-build d2b433
#   WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build d2b433
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
rpm-build d2b433
#   General Public License for more details.
rpm-build d2b433
#
rpm-build d2b433
#   You should have received a copy of the GNU General Public License
rpm-build d2b433
#   along with this program; if not, write to the Free Software
rpm-build d2b433
#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
rpm-build d2b433
#   02111-1307, USA.
rpm-build d2b433
#
rpm-build d2b433
#   As a special exception, the respective Autoconf Macro's copyright
rpm-build d2b433
#   owner gives unlimited permission to copy, distribute and modify the
rpm-build d2b433
#   configure scripts that are the output of Autoconf when processing
rpm-build d2b433
#   the Macro. You need not follow the terms of the GNU General Public
rpm-build d2b433
#   License when using or distributing such scripts, even though
rpm-build d2b433
#   portions of the text of the Macro appear in them. The GNU General
rpm-build d2b433
#   Public License (GPL) does govern all other use of the material that
rpm-build d2b433
#   constitutes the Autoconf Macro.
rpm-build d2b433
#
rpm-build d2b433
#   This special exception to the GPL applies to versions of the
rpm-build d2b433
#   Autoconf Macro released by the Autoconf Macro Archive. When you
rpm-build d2b433
#   make and distribute a modified version of the Autoconf Macro, you
rpm-build d2b433
#   may extend this special exception to the GPL to apply to your
rpm-build d2b433
#   modified version as well.
rpm-build d2b433
rpm-build d2b433
AC_DEFUN([AX_CFLAGS_GCC_OPTION_OLD], [dnl
rpm-build d2b433
AS_VAR_PUSHDEF([FLAGS],[CFLAGS])dnl
rpm-build d2b433
AS_VAR_PUSHDEF([VAR],[ac_cv_cflags_gcc_option_$2])dnl
rpm-build d2b433
AC_CACHE_CHECK([m4_ifval($1,$1,FLAGS) for gcc m4_ifval($2,$2,-option)],
rpm-build d2b433
VAR,[VAR="no, unknown"
rpm-build d2b433
 AC_LANG_SAVE
rpm-build d2b433
 AC_LANG_C
rpm-build d2b433
 ac_save_[]FLAGS="$[]FLAGS"
rpm-build d2b433
for ac_arg dnl
rpm-build d2b433
in "-pedantic -Werror % m4_ifval($2,$2,-option)"  dnl   GCC
rpm-build d2b433
   "-pedantic % m4_ifval($2,$2,-option) %% no, obsolete"  dnl new GCC
rpm-build d2b433
   #
rpm-build d2b433
do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
rpm-build d2b433
   AC_TRY_COMPILE([],[return 0;],
rpm-build d2b433
   [VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
rpm-build d2b433
done
rpm-build d2b433
 FLAGS="$ac_save_[]FLAGS"
rpm-build d2b433
 AC_LANG_RESTORE
rpm-build d2b433
])
rpm-build d2b433
case ".$VAR" in
rpm-build d2b433
     .ok|.ok,*) m4_ifvaln($3,$3) ;;
rpm-build d2b433
   .|.no|.no,*) m4_ifvaln($4,$4) ;;
rpm-build d2b433
   *) m4_ifvaln($3,$3,[
rpm-build d2b433
   if echo " $[]m4_ifval($1,$1,FLAGS) " | grep " $VAR " 2>&1 >/dev/null
rpm-build d2b433
   then AC_RUN_LOG([: m4_ifval($1,$1,FLAGS) does contain $VAR])
rpm-build d2b433
   else AC_RUN_LOG([: m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"])
rpm-build d2b433
                      m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"
rpm-build d2b433
   fi ]) ;;
rpm-build d2b433
esac
rpm-build d2b433
AS_VAR_POPDEF([VAR])dnl
rpm-build d2b433
AS_VAR_POPDEF([FLAGS])dnl
rpm-build d2b433
])
rpm-build d2b433
rpm-build d2b433
rpm-build d2b433
dnl the only difference - the LANG selection... and the default FLAGS
rpm-build d2b433
rpm-build d2b433
AC_DEFUN([AX_CXXFLAGS_GCC_OPTION_OLD], [dnl
rpm-build d2b433
AS_VAR_PUSHDEF([FLAGS],[CXXFLAGS])dnl
rpm-build d2b433
AS_VAR_PUSHDEF([VAR],[ac_cv_cxxflags_gcc_option_$2])dnl
rpm-build d2b433
AC_CACHE_CHECK([m4_ifval($1,$1,FLAGS) for gcc m4_ifval($2,$2,-option)],
rpm-build d2b433
VAR,[VAR="no, unknown"
rpm-build d2b433
 AC_LANG_SAVE
rpm-build d2b433
 AC_LANG_CPLUSPLUS
rpm-build d2b433
 ac_save_[]FLAGS="$[]FLAGS"
rpm-build d2b433
for ac_arg dnl
rpm-build d2b433
in "-pedantic -Werror % m4_ifval($2,$2,-option)"  dnl   GCC
rpm-build d2b433
   "-pedantic % m4_ifval($2,$2,-option) %% no, obsolete"  dnl new GCC
rpm-build d2b433
   #
rpm-build d2b433
do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
rpm-build d2b433
   AC_TRY_COMPILE([],[return 0;],
rpm-build d2b433
   [VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
rpm-build d2b433
done
rpm-build d2b433
 FLAGS="$ac_save_[]FLAGS"
rpm-build d2b433
 AC_LANG_RESTORE
rpm-build d2b433
])
rpm-build d2b433
case ".$VAR" in
rpm-build d2b433
     .ok|.ok,*) m4_ifvaln($3,$3) ;;
rpm-build d2b433
   .|.no|.no,*) m4_ifvaln($4,$4) ;;
rpm-build d2b433
   *) m4_ifvaln($3,$3,[
rpm-build d2b433
   if echo " $[]m4_ifval($1,$1,FLAGS) " | grep " $VAR " 2>&1 >/dev/null
rpm-build d2b433
   then AC_RUN_LOG([: m4_ifval($1,$1,FLAGS) does contain $VAR])
rpm-build d2b433
   else AC_RUN_LOG([: m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"])
rpm-build d2b433
                      m4_ifval($1,$1,FLAGS)="$m4_ifval($1,$1,FLAGS) $VAR"
rpm-build d2b433
   fi ]) ;;
rpm-build d2b433
esac
rpm-build d2b433
AS_VAR_POPDEF([VAR])dnl
rpm-build d2b433
AS_VAR_POPDEF([FLAGS])dnl
rpm-build d2b433
])
rpm-build d2b433
rpm-build d2b433
dnl -------------------------------------------------------------------------
rpm-build d2b433
rpm-build d2b433
AC_DEFUN([AX_CFLAGS_GCC_OPTION_NEW], [dnl
rpm-build d2b433
AS_VAR_PUSHDEF([FLAGS],[CFLAGS])dnl
rpm-build d2b433
AS_VAR_PUSHDEF([VAR],[ac_cv_cflags_gcc_option_$1])dnl
rpm-build d2b433
AC_CACHE_CHECK([m4_ifval($2,$2,FLAGS) for gcc m4_ifval($1,$1,-option)],
rpm-build d2b433
VAR,[VAR="no, unknown"
rpm-build d2b433
 AC_LANG_SAVE
rpm-build d2b433
 AC_LANG_C
rpm-build d2b433
 ac_save_[]FLAGS="$[]FLAGS"
rpm-build d2b433
for ac_arg dnl
rpm-build d2b433
in "-pedantic -Werror % m4_ifval($1,$1,-option)"  dnl   GCC
rpm-build d2b433
   "-pedantic % m4_ifval($1,$1,-option) %% no, obsolete"  dnl new GCC
rpm-build d2b433
   #
rpm-build d2b433
do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
rpm-build d2b433
   AC_TRY_COMPILE([],[return 0;],
rpm-build d2b433
   [VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
rpm-build d2b433
done
rpm-build d2b433
 FLAGS="$ac_save_[]FLAGS"
rpm-build d2b433
 AC_LANG_RESTORE
rpm-build d2b433
])
rpm-build d2b433
case ".$VAR" in
rpm-build d2b433
     .ok|.ok,*) m4_ifvaln($3,$3) ;;
rpm-build d2b433
   .|.no|.no,*) m4_ifvaln($4,$4) ;;
rpm-build d2b433
   *) m4_ifvaln($3,$3,[
rpm-build d2b433
   if echo " $[]m4_ifval($2,$2,FLAGS) " | grep " $VAR " 2>&1 >/dev/null
rpm-build d2b433
   then AC_RUN_LOG([: m4_ifval($2,$2,FLAGS) does contain $VAR])
rpm-build d2b433
   else AC_RUN_LOG([: m4_ifval($2,$2,FLAGS)="$m4_ifval($2,$2,FLAGS) $VAR"])
rpm-build d2b433
                      m4_ifval($2,$2,FLAGS)="$m4_ifval($2,$2,FLAGS) $VAR"
rpm-build d2b433
   fi ]) ;;
rpm-build d2b433
esac
rpm-build d2b433
AS_VAR_POPDEF([VAR])dnl
rpm-build d2b433
AS_VAR_POPDEF([FLAGS])dnl
rpm-build d2b433
])
rpm-build d2b433
rpm-build d2b433
rpm-build d2b433
dnl the only difference - the LANG selection... and the default FLAGS
rpm-build d2b433
rpm-build d2b433
AC_DEFUN([AX_CXXFLAGS_GCC_OPTION_NEW], [dnl
rpm-build d2b433
AS_VAR_PUSHDEF([FLAGS],[CXXFLAGS])dnl
rpm-build d2b433
AS_VAR_PUSHDEF([VAR],[ac_cv_cxxflags_gcc_option_$1])dnl
rpm-build d2b433
AC_CACHE_CHECK([m4_ifval($2,$2,FLAGS) for gcc m4_ifval($1,$1,-option)],
rpm-build d2b433
VAR,[VAR="no, unknown"
rpm-build d2b433
 AC_LANG_SAVE
rpm-build d2b433
 AC_LANG_CPLUSPLUS
rpm-build d2b433
 ac_save_[]FLAGS="$[]FLAGS"
rpm-build d2b433
for ac_arg dnl
rpm-build d2b433
in "-pedantic -Werror % m4_ifval($1,$1,-option)"  dnl   GCC
rpm-build d2b433
   "-pedantic % m4_ifval($1,$1,-option) %% no, obsolete"  dnl new GCC
rpm-build d2b433
   #
rpm-build d2b433
do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
rpm-build d2b433
   AC_TRY_COMPILE([],[return 0;],
rpm-build d2b433
   [VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
rpm-build d2b433
done
rpm-build d2b433
 FLAGS="$ac_save_[]FLAGS"
rpm-build d2b433
 AC_LANG_RESTORE
rpm-build d2b433
])
rpm-build d2b433
case ".$VAR" in
rpm-build d2b433
     .ok|.ok,*) m4_ifvaln($3,$3) ;;
rpm-build d2b433
   .|.no|.no,*) m4_ifvaln($4,$4) ;;
rpm-build d2b433
   *) m4_ifvaln($3,$3,[
rpm-build d2b433
   if echo " $[]m4_ifval($2,$2,FLAGS) " | grep " $VAR " 2>&1 >/dev/null
rpm-build d2b433
   then AC_RUN_LOG([: m4_ifval($2,$2,FLAGS) does contain $VAR])
rpm-build d2b433
   else AC_RUN_LOG([: m4_ifval($2,$2,FLAGS)="$m4_ifval($2,$2,FLAGS) $VAR"])
rpm-build d2b433
                      m4_ifval($2,$2,FLAGS)="$m4_ifval($2,$2,FLAGS) $VAR"
rpm-build d2b433
   fi ]) ;;
rpm-build d2b433
esac
rpm-build d2b433
AS_VAR_POPDEF([VAR])dnl
rpm-build d2b433
AS_VAR_POPDEF([FLAGS])dnl
rpm-build d2b433
])
rpm-build d2b433
rpm-build d2b433
AC_DEFUN([AX_CFLAGS_GCC_OPTION],[ifelse(m4_bregexp([$2],[-]),-1,
rpm-build d2b433
[AX_CFLAGS_GCC_OPTION_NEW($@)],[AX_CFLAGS_GCC_OPTION_OLD($@)])])
rpm-build d2b433
rpm-build d2b433
AC_DEFUN([AX_CXXFLAGS_GCC_OPTION],[ifelse(m4_bregexp([$2],[-]),-1,
rpm-build d2b433
[AX_CXXFLAGS_GCC_OPTION_NEW($@)],[AX_CXXFLAGS_GCC_OPTION_OLD($@)])])